| Total Complexity | 4 |
| Total Lines | 31 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | class Item |
||
| 12 | { |
||
| 13 | /** @var Uuid */ |
||
| 14 | private $uuid; |
||
| 15 | |||
| 16 | /** @var Profile */ |
||
| 17 | private $profile; |
||
| 18 | |||
| 19 | /** @var Key */ |
||
| 20 | private $key; |
||
| 21 | |||
| 22 | public function __construct(Uuid $uuid, Profile $profile, Key $key) |
||
| 23 | { |
||
| 24 | $this->uuid = $uuid; |
||
| 25 | $this->profile = $profile; |
||
| 26 | $this->key = $key; |
||
| 27 | } |
||
| 28 | |||
| 29 | public function getUuid(): Uuid |
||
| 32 | } |
||
| 33 | |||
| 34 | public function getProfile(): Profile |
||
| 37 | } |
||
| 38 | |||
| 39 | public function getKey(): Key |
||
| 44 |