1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/Doctrine/Collection/Immediate.php

20 lines
491 B
PHP
Raw Normal View History

2006-05-30 12:59:08 +04:00
<?php
Doctrine::autoload('Doctrine_Collection');
/**
* @author Konsta Vesterinen
* @package Doctrine ORM
* @url www.phpdoctrine.com
* @license LGPL
* @version 1.0 alpha
*/
class Doctrine_Collection_Immediate extends Doctrine_Collection {
/**
* @param Doctrine_DQL_Parser $graph
* @param integer $key
*/
public function __construct(Doctrine_Table $table) {
parent::__construct($table);
}
}
?>