File tree 3 files changed +17
-0
lines changed
3 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ parameters:
36
36
- stubs/Collections/ReadableCollection.stub
37
37
- stubs/Collections/Selectable.stub
38
38
- stubs/ORM/AbstractQuery.stub
39
+ - stubs/ORM/Id/AbstractIdGenerator.stub
39
40
- stubs/ORM/Mapping/ClassMetadata.stub
40
41
- stubs/ORM/Mapping/ClassMetadataInfo.stub
41
42
- stubs/ORM/ORMException.stub
Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ declare(strict_types=1);
4
+
5
+ namespace Doctrine\ORM\Id;
6
+
7
+ abstract class AbstractIdGenerator
8
+ {
9
+
10
+ }
Original file line number Diff line number Diff line change 3
3
namespace Doctrine\ORM\Mapping;
4
4
5
5
use BackedEnum;
6
+ use Doctrine\ORM\Id\AbstractIdGenerator;
6
7
use Doctrine\Persistence\Mapping\ClassMetadata;
7
8
use ReflectionClass;
8
9
@@ -90,6 +91,11 @@ use ReflectionClass;
90
91
class ClassMetadataInfo implements ClassMetadata
91
92
{
92
93
94
+ /**
95
+ * @var AbstractIdGenerator|null
96
+ */
97
+ public $idGenerator;
98
+
93
99
/** @var string|null */
94
100
public $customRepositoryClassName;
95
101
You can’t perform that action at this time.
0 commit comments