| Conditions | 2 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 23 | public function __construct(Uuid $uuid, Key $key, Profile $profile, ?Uuid $parentUuid) |
||
| 24 | { |
||
| 25 | parent::__construct( |
||
| 26 | [ |
||
| 27 | 'uuid' => $uuid->getValue(), |
||
| 28 | 'key' => $key->getValue(), |
||
| 29 | 'profile' => $profile->__toString(), |
||
| 30 | 'parent_uuid' => $parentUuid ? $parentUuid->getValue() : null, |
||
| 31 | ] |
||
| 35 |