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