File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 33namespace Doctrine\ODM\MongoDB\Repository;
44
55use Doctrine\Common\Persistence\ObjectRepository;
6+ use Doctrine\Persistence\ObjectRepository as PersistenceObjectRepository;
67
78/**
89 * @template TDocumentClass
910 * @implements ObjectRepository<TDocumentClass>
11+ * @implements PersistenceObjectRepository<TDocumentClass>
1012 */
11- class DocumentRepository implements ObjectRepository
13+ class DocumentRepository implements ObjectRepository, PersistenceObjectRepository
1214{
1315
1416 /**
Original file line number Diff line number Diff line change 33namespace Doctrine\ORM;
44
55use Doctrine\Common\Persistence\ObjectRepository;
6+ use Doctrine\Persistence\ObjectRepository as PersistenceObjectRepository;
67
78/**
89 * @template TEntityClass
910 * @implements ObjectRepository<TEntityClass>
11+ * @implements PersistenceObjectRepository<TEntityClass>
1012 */
11- class EntityRepository implements ObjectRepository
13+ class EntityRepository implements ObjectRepository, PersistenceObjectRepository
1214{
1315
1416 /**
You can’t perform that action at this time.
0 commit comments