. */ Doctrine::autoload("Doctrine_Query_Part"); /** * Doctrine_Query_Select * * @package Doctrine * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @category Object Relational Mapping * @link www.phpdoctrine.com * @since 1.0 * @version $Revision: 1080 $ * @author Konsta Vesterinen */ class Doctrine_Query_Select extends Doctrine_Query_Part { public function parse($dql) { $this->query->parseSelect($dql); return $this->query; } }