| 1 | <?php |
||
| 8 | class DefaultUuidEntity extends GeneratedIntegerIdEntity implements UuidEntityInterface |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var string |
||
| 12 | */ |
||
| 13 | private $uuid; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @return string |
||
| 17 | */ |
||
| 18 | public function getUuid(): ?string |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @param string $uuid |
||
| 25 | */ |
||
| 26 | 2 | public function setUuid(string $uuid) |
|
| 30 | } |
||
| 31 |