* @license http://github.com/basdenooijer/solarium/raw/master/COPYING * @link http://www.solarium-project.org/ * * @package Solarium * @subpackage Result */ /** * Select query facet result * * Since a query facet has only a single result, the count for the query, this * is a very simple object. * * @package Solarium * @subpackage Result */ class Solarium_Result_Select_Facet_Query { /** * Value (count) * * @var mixed */ protected $_value; /** * Constructor * * @param mixed $value * @return void */ public function __construct($value) { $this->_value = $value; } /** * Get the value * * @return mixed */ public function getValue() { return $this->_value; } }