1
0
mirror of synced 2025-01-19 23:11:41 +03:00
doctrine2/classes/Collection/Immediate.class.php

20 lines
526 B
PHP
Raw Normal View History

2006-04-13 20:37:28 +00:00
<?php
require_once(Doctrine::getPath().DIRECTORY_SEPARATOR."Collection.class.php");
/**
* @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
*/
2006-04-19 16:01:36 +00:00
public function __construct(Doctrine_Table $table) {
parent::__construct($table);
2006-04-13 20:37:28 +00:00
}
}
?>