Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 1 |
Lines | 0 |
Ratio | 0 % |
Tests | 2 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
13 | 2 | public function __construct( |
|
14 | public readonly string $targetType, |
||
15 | ?string $name = null, |
||
16 | ?string $description = null, |
||
17 | ?string $type = null, |
||
18 | ?int $mode = null, |
||
19 | ?string $deprecationReason = null |
||
20 | ) { |
||
21 | 2 | parent::__construct($name, $description, $type, $mode, $deprecationReason); |
|
22 | } |
||
24 |