| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | public function __construct( |
||
| 21 | int $pageId, |
||
| 22 | bool $dryState = false, |
||
| 23 | string $title = null, |
||
| 24 | string $type = null, |
||
| 25 | string $icon = null |
||
| 26 | ) |
||
| 27 | { |
||
| 28 | $this->pageId = $pageId; |
||
| 29 | $this->dryState = $dryState; |
||
| 30 | $this->title = $title; |
||
| 31 | $this->type = $type; |
||
| 32 | $this->icon = $icon; |
||
| 33 | } |
||
| 67 |