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 3
3
namespace Doctrine\ODM\MongoDB\Repository;
4
4
5
5
use Doctrine\Common\Persistence\ObjectRepository;
6
+ use Doctrine\Persistence\ObjectRepository as PersistenceObjectRepository;
6
7
7
8
/**
8
9
* @template TDocumentClass
9
10
* @implements ObjectRepository<TDocumentClass>
11
+ * @implements PersistenceObjectRepository<TDocumentClass>
10
12
*/
11
- class DocumentRepository implements ObjectRepository
13
+ class DocumentRepository implements ObjectRepository, PersistenceObjectRepository
12
14
{
13
15
14
16
/**
Original file line number Diff line number Diff line change 3
3
namespace Doctrine\ORM;
4
4
5
5
use Doctrine\Common\Persistence\ObjectRepository;
6
+ use Doctrine\Persistence\ObjectRepository as PersistenceObjectRepository;
6
7
7
8
/**
8
9
* @template TEntityClass
9
10
* @implements ObjectRepository<TEntityClass>
11
+ * @implements PersistenceObjectRepository<TEntityClass>
10
12
*/
11
- class EntityRepository implements ObjectRepository
13
+ class EntityRepository implements ObjectRepository, PersistenceObjectRepository
12
14
{
13
15
14
16
/**
You can’t perform that action at this time.
0 commit comments