* @license http://github.com/basdenooijer/solarium/raw/master/COPYING * @link http://www.solarium-project.org/ * * @package Solarium * @subpackage Query */ /** * Query component base class * * @package Solarium * @subpackage Query */ class Solarium_Query_Select_Component extends Solarium_Configurable { /** * Component type * * To be implemented in extending classes * * @var string */ protected $_type = ''; /** * Get component type * * @return string */ public function getType() { return $this->_type; } }