| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | public function __construct(string $uuid, string $label, string $type, ?string $icon, $prettyLabel, array $opt = []) |
||
| 17 | { |
||
| 18 | $this->uuid = $uuid; |
||
| 19 | $this->label = $label; |
||
| 20 | $this->type = $type; |
||
| 21 | $this->icon = $icon; |
||
| 22 | $this->prettyLabel = str_replace('Catégorie:', '', $prettyLabel); |
||
| 23 | $this->opt = $opt; |
||
| 24 | } |
||
| 46 |