| 1 | <?php |
||
| 21 | class StreamName |
||
| 22 | { |
||
| 23 | private $name; |
||
| 24 | private $aggregateId; |
||
| 25 | |||
| 26 | public function __construct(Id $aggregateId, string $name) |
||
| 31 | |||
| 32 | private function setName(string $name) : void |
||
| 37 | |||
| 38 | private function checkNameIsValid(string $name) : void |
||
| 44 | |||
| 45 | public function name() : string |
||
| 49 | |||
| 50 | public function __toString() : string |
||
| 54 | } |
||
| 55 |