| Conditions | 1 |
| Paths | 1 |
| Total Lines | 16 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 28 | public function __construct( |
||
| 29 | string $uuid, |
||
| 30 | string $label, |
||
| 31 | int $level, |
||
| 32 | ?FamilyLogDomainModel $parent, |
||
| 33 | ?array $children, |
||
| 34 | string $path, |
||
| 35 | string $slug |
||
| 36 | ) { |
||
| 37 | $this->uuid = $uuid; |
||
| 38 | $this->label = $label; |
||
| 39 | $this->level = $level; |
||
| 40 | $this->parent = $parent; |
||
| 41 | $this->children = $children; |
||
| 42 | $this->path = $path; |
||
| 43 | $this->slug = $slug; |
||
| 44 | } |
||
| 46 |