1
0
mirror of synced 2025-01-18 14:31:40 +03:00

moved collection persisters

This commit is contained in:
romanb 2008-09-12 09:39:43 +00:00
parent d495a33ab3
commit 70406665ad
3 changed files with 11 additions and 11 deletions

View File

@ -1,10 +0,0 @@
<?php
class Doctrine_CollectionPersister_OneToManyPersister extends Doctrine_CollectionPersister_Abstract
{
}
?>

View File

@ -1,6 +1,6 @@
<?php <?php
class Doctrine_CollectionPersister_Abstract class Doctrine_ORM_Persisters_AbstractCollectionPersister
{ {
public function recreate(Doctrine_Collection $coll) public function recreate(Doctrine_Collection $coll)

View File

@ -0,0 +1,10 @@
<?php
class Doctrine_ORM_Persisters_OneToManyPersister extends Doctrine_ORM_Persisters_AbstractCollectionPersister
{
}
?>