| 1 | <?php |
||
| 9 | abstract class AggregateRootId |
||
| 10 | { |
||
| 11 | /** @var string */ |
||
| 12 | protected $uuid; |
||
| 13 | |||
| 14 | public function __construct(string $id = null) |
||
| 18 | |||
| 19 | public static function instance(): AggregateRootId |
||
| 23 | |||
| 24 | public static function instanceFromId(string $id): AggregateRootId |
||
| 28 | |||
| 29 | public function __toString(): string |
||
| 33 | } |
||
| 34 |