Immediate.php 613 Bytes
Newer Older
doctrine's avatar
doctrine committed
1 2 3
<?php
Doctrine::autoload('Doctrine_Collection');
/**
lsmith's avatar
lsmith committed
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
 */
lsmith's avatar
lsmith committed
12 13
class Doctrine_Collection_Immediate extends Doctrine_Collection
{
doctrine's avatar
doctrine committed
14 15
    /**
     * @param Doctrine_DQL_Parser $graph
lsmith's avatar
lsmith committed
16
     * @param integer $key
doctrine's avatar
doctrine committed
17
     */
lsmith's avatar
lsmith committed
18 19
    public function __construct(Doctrine_Table $table)
    {
doctrine's avatar
doctrine committed
20 21 22
        parent::__construct($table);
    }
}