| 1 | <?php |
||
| 8 | class DefaultUuidEntity extends GeneratedIntegerIdEntity implements UuidEntityInterface |
||
| 9 | { |
||
| 10 | /** @var string */ |
||
| 11 | private $uuid; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * {@inheritdoc} |
||
| 15 | */ |
||
| 16 | 32 | public function getUuid(): ?string |
|
| 20 | |||
| 21 | /** |
||
| 22 | * {@inheritdoc} |
||
| 23 | */ |
||
| 24 | 32 | public function setUuid(string $uuid): void |
|
| 28 | } |
||
| 29 |