Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
22 | public function __construct( |
||
23 | string $name, |
||
24 | array $attributes = [], |
||
25 | array $functions = [], |
||
26 | array $implements = [], |
||
27 | $extends = null |
||
28 | ) { |
||
29 | $this->name = $name; |
||
30 | $this->attributes = $attributes; |
||
31 | $this->functions = $functions; |
||
32 | $this->implements = $implements; |
||
33 | $this->extends = $extends; |
||
34 | } |
||
63 |