| 1 | <?php |
||
| 5 | class StandaloneUuidEntity implements EntityInterface, UuidEntityInterface |
||
| 6 | { |
||
| 7 | |||
| 8 | /** @var string */ |
||
| 9 | private $uuid; |
||
| 10 | |||
| 11 | /** |
||
| 12 | * @return string |
||
| 13 | */ |
||
| 14 | public function getUuid() |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @param string $uuid |
||
| 21 | */ |
||
| 22 | public function setUuid($uuid) |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @return mixed |
||
| 29 | */ |
||
| 30 | public function getId() |
||
| 34 | } |
||
| 35 |