Conditions | 3 |
Paths | 4 |
Total Lines | 12 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 3 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | 2 | public function __construct( |
|
15 | private readonly string $name, |
||
16 | private readonly mixed $value, |
||
17 | ?string $description = null, |
||
18 | ?string $deprecationReason = null, |
||
19 | ) { |
||
20 | 2 | if (null !== $description) { |
|
21 | 1 | $this->description = $description; |
|
|
|||
22 | } |
||
23 | |||
24 | 2 | if (null !== $deprecationReason) { |
|
25 | 1 | $this->deprecationReason = $deprecationReason; |
|
26 | } |
||
52 |