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