Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
27 | 27 | public function __construct( |
|
28 | Name $name, |
||
29 | private readonly array $cases, |
||
30 | array $methods = [], |
||
31 | array $constants = [], |
||
32 | array $interfaces = [], |
||
33 | array $traits = [], |
||
34 | ) { |
||
35 | 27 | parent::__construct($name, $methods); |
|
36 | 27 | $this->constants = $constants; |
|
37 | 27 | $this->traits = $traits; |
|
38 | 27 | $this->interfaces = $interfaces; |
|
|
|||
39 | } |
||
52 |