| 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) |
||
| 31 | } |
||
| 32 | |||
| 33 | public function getProfile(): Profile |
||
| 34 | { |
||
| 35 | return $this->profile; |
||
| 36 | } |
||
| 37 | |||
| 38 | public function getKey(): Key |
||
| 41 | } |
||
| 42 | } |
||
| 43 |