1 | <?php declare(strict_types=1); |
||
11 | trait UuidAutogeneratedTrait |
||
12 | { |
||
13 | /** |
||
14 | * @var Uuid|null |
||
15 | * |
||
16 | * @ORM\Id() |
||
17 | * @ORM\GeneratedValue(strategy="CUSTOM") |
||
18 | * @ORM\CustomIdGenerator(class="Ramsey\Uuid\Doctrine\UuidGenerator") |
||
19 | * @ORM\Column(name="id", type="uuid") |
||
20 | */ |
||
21 | protected $id; |
||
22 | |||
23 | public function getId(): ?Uuid |
||
27 | } |
||
28 |