. */ namespace Doctrine\ORM\Query; /** * Doctrine_ORM_Query_QueryResult * * @author Guilherme Blanco * @author Janne Vanhala * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @link http://www.doctrine-project.org * @since 2.0 * @version $Revision$ */ class QueryResult extends AbstractResult { /** * Returns cached resultset. * * @return array Resultset. */ public function getResultSet() { return $this->_data; } }