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 b43fe3e commit abe41caCopy full SHA for abe41ca
extension.neon
@@ -17,6 +17,7 @@ parameters:
17
- stubs/EntityManagerDecorator.stub
18
- stubs/EntityManagerInterface.stub
19
- stubs/EntityRepository.stub
20
+ - stubs/ServiceEntityRepository.stub
21
- stubs/MongoClassMetadataInfo.stub
22
- stubs/Persistence/ManagerRegistry.stub
23
- stubs/Persistence/ObjectManager.stub
stubs/ServiceEntityRepository.stub
@@ -0,0 +1,11 @@
1
+<?php
2
+namespace Doctrine\Bundle\DoctrineBundle\Repository;
3
+
4
+use \Doctrine\ORM\EntityRepository;
5
6
+/**
7
+ * @template TEntityClass
8
+ * @template-extends EntityRepository<TEntityClass>
9
+ */
10
+class ServiceEntityRepository extends EntityRepository {
11
+}
0 commit comments