Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
17 | 123 | public function __construct( |
|
18 | string $name, |
||
19 | array $attributes = [], |
||
20 | array $functions = [], |
||
21 | array $implements = [], |
||
22 | $extends = null |
||
23 | ) { |
||
24 | 123 | parent::__construct($name, $functions, $extends); |
|
25 | 123 | $this->attributes = $attributes; |
|
26 | 123 | $this->implements = $implements; |
|
27 | 123 | } |
|
55 |