Total Complexity | 3 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
19 | class Item |
||
20 | { |
||
21 | /** @var Profile */ |
||
22 | private $profile; |
||
23 | |||
24 | /** @var Key */ |
||
25 | private $key; |
||
26 | |||
27 | public function __construct(Profile $profile, Key $key) |
||
28 | { |
||
29 | $this->profile = $profile; |
||
30 | $this->key = $key; |
||
31 | } |
||
32 | |||
33 | public function getProfile(): Profile |
||
36 | } |
||
37 | |||
38 | public function getKey(): Key |
||
43 |