| 1 | <?php |
||
| 12 | class InheritanceGeneratorsChildB extends InheritanceGeneratorsChildA |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @ORM\Column(type="string") |
||
| 16 | * @ORM\GeneratedValue("CUSTOM") |
||
| 17 | * @ORM\CustomIdGenerator("Doctrine\Tests\Models\ValueGenerators\BarGenerator") |
||
| 18 | * @var string|null |
||
| 19 | */ |
||
| 20 | private $b; |
||
| 21 | |||
| 22 | public function getB() : ?string |
||
| 26 | } |
||
| 27 |