| 1 | <?php |
||
| 23 | final class EntityId |
||
| 24 | { |
||
| 25 | /** |
||
| 26 | * @var string |
||
| 27 | */ |
||
| 28 | private $entityId; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @param string $entityId |
||
| 32 | */ |
||
| 33 | public function __construct($entityId) |
||
| 41 | |||
| 42 | /** |
||
| 43 | * @param EntityId $other |
||
| 44 | * @return bool |
||
| 45 | */ |
||
| 46 | public function equals(EntityId $other) |
||
| 50 | |||
| 51 | /** |
||
| 52 | * @return string |
||
| 53 | */ |
||
| 54 | public function getEntityId() |
||
| 58 | |||
| 59 | public function __toString() |
||
| 63 | } |
||
| 64 |