Total Complexity | 3 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
19 | class Command |
||
20 | { |
||
21 | /** @var Uuid */ |
||
22 | private $boardUuid; |
||
23 | |||
24 | /** @var Key */ |
||
25 | private $key; |
||
26 | |||
27 | public function __construct(string $boardUuid, array $key) |
||
28 | { |
||
29 | $this->boardUuid = new Uuid($boardUuid); |
||
30 | $this->key = new Key($key); |
||
31 | } |
||
32 | |||
33 | public function getBoardUuid(): Uuid |
||
34 | { |
||
35 | return $this->boardUuid; |
||
36 | } |
||
37 | |||
38 | public function getKey(): Key |
||
41 | } |
||
42 | } |
||
43 |