. */ /** * Builds result sets in to the hierarchy graph using php arrays * * @package Doctrine * @subpackage Hydrate * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @link www.doctrine-project.org * @since 1.2 * @version $Revision$ * @author Guilherme Blanco */ class Doctrine_Hydrator_RecordHierarchyDriver extends Doctrine_Hydrator_RecordDriver { public function hydrateResultSet($stmt) { return parent::hydrateResultSet($stmt)->toHierarchy(); } }