. */ /** * Abstract class of an AST node * * @package Doctrine * @subpackage Query * @author Guilherme Blanco * @author Janne Vanhala * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @link http://www.phpdoctrine.org * @since 2.0 * @version $Revision$ */ abstract class Doctrine_Query_AST { protected $_parserResult = null; public function __construct(Doctrine_Query_ParserResult $parserResult) { $this->_parserResult = $parserResult; } }