Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
19 | 5 | public function __construct( |
|
20 | bool $default, |
||
21 | array $enum = null, |
||
22 | string $description = null, |
||
23 | Extensions $extensions = null |
||
24 | ) { |
||
25 | 5 | $this->default = $default; |
|
26 | 5 | $this->enum = $enum; |
|
27 | 5 | $this->description = $description; |
|
28 | 5 | $this->extensions = $extensions; |
|
29 | } |
||
30 | |||
66 |