Total Complexity | 3 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
18 | abstract class Item |
||
19 | { |
||
20 | /** @var Uuid */ |
||
21 | private $uuid; |
||
22 | |||
23 | /** @var Profile */ |
||
24 | private $profile; |
||
25 | |||
26 | public function __construct(Uuid $uuid, Profile $profile) |
||
27 | { |
||
28 | $this->uuid = $uuid; |
||
29 | $this->profile = $profile; |
||
30 | } |
||
31 | |||
32 | public function getUuid(): Uuid |
||
33 | { |
||
34 | return $this->uuid; |
||
35 | } |
||
36 | |||
37 | public function getProfile(): Profile |
||
40 | } |
||
41 | } |
||
42 |