2006-05-30 12:59:08 +04:00
|
|
|
<?php
|
|
|
|
Doctrine::autoload('Doctrine_Collection');
|
|
|
|
/**
|
2006-12-29 17:01:31 +03:00
|
|
|
* @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
|
|
|
|
*/
|
2006-12-29 17:40:47 +03:00
|
|
|
class Doctrine_Collection_Immediate extends Doctrine_Collection
|
|
|
|
{
|
2006-05-30 12:59:08 +04:00
|
|
|
/**
|
|
|
|
* @param Doctrine_DQL_Parser $graph
|
2006-12-29 17:01:31 +03:00
|
|
|
* @param integer $key
|
2006-05-30 12:59:08 +04:00
|
|
|
*/
|
2006-12-29 17:40:47 +03:00
|
|
|
public function __construct(Doctrine_Table $table)
|
|
|
|
{
|
2006-05-30 12:59:08 +04:00
|
|
|
parent::__construct($table);
|
|
|
|
}
|
|
|
|
}
|