File tree Expand file tree Collapse file tree 3 files changed +17
-0
lines changed Expand file tree Collapse file tree 3 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ parameters:
3636 - stubs/Collections/ReadableCollection.stub
3737 - stubs/Collections/Selectable.stub
3838 - stubs/ORM/AbstractQuery.stub
39+ - stubs/ORM/Id/AbstractIdGenerator.stub
3940 - stubs/ORM/Mapping/ClassMetadata.stub
4041 - stubs/ORM/Mapping/ClassMetadataInfo.stub
4142 - 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 33namespace Doctrine\ORM\Mapping;
44
55use BackedEnum;
6+ use Doctrine\ORM\Id\AbstractIdGenerator;
67use Doctrine\Persistence\Mapping\ClassMetadata;
78use ReflectionClass;
89
@@ -90,6 +91,11 @@ use ReflectionClass;
9091class ClassMetadataInfo implements ClassMetadata
9192{
9293
94+ /**
95+ * @var AbstractIdGenerator|null
96+ */
97+ public $idGenerator;
98+
9399 /** @var string|null */
94100 public $customRepositoryClassName;
95101
You can’t perform that action at this time.
0 commit comments