Total Complexity | 5 |
Total Lines | 36 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
14 | class Board implements BoardInterface |
||
15 | { |
||
16 | /** @var Key */ |
||
17 | private $key; |
||
18 | |||
19 | /** @var Profile */ |
||
20 | private $profile; |
||
21 | |||
22 | /** @var Data */ |
||
23 | private $data; |
||
24 | |||
25 | public function __construct(Key $key, Profile $profile, Data $data) |
||
30 | } |
||
31 | |||
32 | public function getKey(): Key |
||
35 | } |
||
36 | |||
37 | public function getProfile(): Profile |
||
40 | } |
||
41 | |||
42 | public function getData(): Data |
||
43 | { |
||
44 | return $this->data; |
||
45 | } |
||
46 | |||
47 | public function getStep(): Step |
||
50 | } |
||
51 | } |
||
52 |