Immediate.php 615 Bytes
Newer Older
doctrine's avatar
doctrine committed
1 2 3
<?php
Doctrine::autoload('Doctrine_Collection');
/**
4 5 6 7 8 9 10 11
 * @author      Konsta Vesterinen <kvesteri@cc.hut.fi>
 * @package     Doctrine
 * @license     http://www.opensource.org/licenses/lgpl-license.php LGPL
 * @version     $Revision$
 * @category    Object Relational Mapping
 * @link        www.phpdoctrine.com
 * @since       1.0
 */
doctrine's avatar
doctrine committed
12 13 14 15 16 17 18 19 20
class Doctrine_Collection_Immediate extends Doctrine_Collection {
    /**
     * @param Doctrine_DQL_Parser $graph
     * @param integer $key              
     */
    public function __construct(Doctrine_Table $table) {
        parent::__construct($table);
    }
}
21