1
0
mirror of synced 2025-01-18 14:31:40 +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
* @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
}

View File

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