| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 18 | public function __construct(string $id, string $type, string $title, bool $visible, ?string $icon = null, ?int $pageId = null) |
||
| 19 | { |
||
| 20 | $this->id = $id; |
||
| 21 | $this->type = $type; |
||
| 22 | $this->title = $title; |
||
| 23 | $this->visible = $visible; |
||
| 24 | $this->icon = $icon; |
||
| 25 | $this->pageId = $pageId; |
||
| 26 | } |
||
| 58 |