Skip to content

Commit 6e76d43

Browse files
franmomuondrejmirtes
authored andcommitted
Add ServiceDocumentRepository stub
1 parent 4cd0253 commit 6e76d43

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

extension.neon

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ parameters:
2929
- stubs/Collections/Selectable.stub
3030
- stubs/ORM/QueryBuilder.stub
3131
- stubs/ORM/AbstractQuery.stub
32+
- stubs/ServiceDocumentRepository.stub
3233

3334
parametersSchema:
3435
doctrine: structure([

stubs/ServiceDocumentRepository.stub

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
3+
namespace Doctrine\Bundle\MongoDBBundle\Repository;
4+
5+
use Doctrine\ODM\MongoDB\Repository\DocumentRepository;
6+
7+
/**
8+
* @template TDocumentClass of object
9+
* @template-extends DocumentRepository<TDocumentClass>
10+
*/
11+
class ServiceDocumentRepository extends DocumentRepository
12+
{
13+
}

0 commit comments

Comments
 (0)