Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
13 | 1 | public function __construct(array $data) |
|
14 | { |
||
15 | 1 | $this->title = $data['title'] ?? null; |
|
16 | 1 | $this->panelId = $data['panelId'] ?? null; |
|
17 | 1 | $this->panelClass = $data['panelClass'] ?? null; |
|
18 | 1 | $this->panelHtmlContent = $data['panelHtmlContent'] ?? null; |
|
19 | 1 | $this->authorized = $data['authorized'] ?? null; |
|
20 | } |
||
22 |