Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | 3 | public function __construct( |
|
17 | ?string $name = null, |
||
18 | ?string $description = null, |
||
19 | ?string $type = null, |
||
20 | ?int $mode = null, |
||
21 | ?string $deprecationReason = null, |
||
22 | mixed $defaultValue = null, |
||
23 | ) { |
||
24 | 3 | parent::__construct($name, $description, $type, $mode, $deprecationReason); |
|
25 | |||
26 | 3 | if (func_num_args() >= 6) { |
|
27 | 2 | $this->defaultValue = $defaultValue; |
|
|
|||
28 | } |
||
36 |