We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4cd0253 commit 6e76d43Copy full SHA for 6e76d43
extension.neon
@@ -29,6 +29,7 @@ parameters:
29
- stubs/Collections/Selectable.stub
30
- stubs/ORM/QueryBuilder.stub
31
- stubs/ORM/AbstractQuery.stub
32
+ - stubs/ServiceDocumentRepository.stub
33
34
parametersSchema:
35
doctrine: structure([
stubs/ServiceDocumentRepository.stub
@@ -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