1
0
Fork 0
mirror of synced 2025-04-03 13:23:37 +03:00

[2.0] Fix Fatal errors in unused classes that crash the testsuite when running PHPUnit with coverage-whitelisting of complete Doctrine directory.

This commit is contained in:
beberlei 2009-11-06 17:05:22 +00:00
parent 93b20427c9
commit b24811e29a
2 changed files with 2 additions and 2 deletions

View file

@ -27,7 +27,7 @@ namespace Doctrine\ORM\Persisters;
* @author robo * @author robo
* @todo Implementation once support for collections of basic elements (i.e. strings) is added. * @todo Implementation once support for collections of basic elements (i.e. strings) is added.
*/ */
class ElementCollectionPersister extends AbstractCollectionPersister abstract class ElementCollectionPersister extends AbstractCollectionPersister
{ {
//put your code here //put your code here
} }

View file

@ -2,7 +2,7 @@
namespace Doctrine\ORM\Persisters; namespace Doctrine\ORM\Persisters;
class UnionSubclassPersister extends AbstractEntityPersister class UnionSubclassPersister extends StandardEntityPersister
{ {
} }