Total Complexity | 4 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
22 | class Board implements BoardInterface |
||
23 | { |
||
24 | /** @var Key */ |
||
25 | private $key; |
||
26 | |||
27 | /** @var Profile */ |
||
28 | private $profile; |
||
29 | |||
30 | /** @var Data */ |
||
31 | private $data; |
||
32 | |||
33 | public function __construct(Key $key, Profile $profile, Data $data) |
||
34 | { |
||
35 | $this->key = $key; |
||
36 | $this->profile = $profile; |
||
37 | $this->data = $data; |
||
38 | } |
||
39 | |||
40 | public function getKey(): Key |
||
41 | { |
||
42 | return $this->key; |
||
43 | } |
||
44 | |||
45 | public function getProfile(): Profile |
||
46 | { |
||
47 | return $this->profile; |
||
48 | } |
||
49 | |||
50 | public function getMetadata(): DomainMetadata |
||
53 | } |
||
54 | } |
||
55 |