1 | <?php |
||
9 | class WorkoutId implements WorkoutIdInterface |
||
10 | { |
||
11 | /** |
||
12 | * @var string |
||
13 | */ |
||
14 | private $id; |
||
15 | |||
16 | /** |
||
17 | * @param string $id |
||
18 | */ |
||
19 | public function __construct(string $id) |
||
23 | |||
24 | /** |
||
25 | * @return string |
||
26 | */ |
||
27 | public function toString(): string |
||
31 | |||
32 | /** |
||
33 | * @param WorkoutIdInterface $other |
||
34 | * @return bool |
||
35 | */ |
||
36 | public function equals(WorkoutIdInterface $other): bool |
||
40 | } |
||
41 |