Conditions | 1 |
Paths | 1 |
Total Lines | 16 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
34 | public function __construct( |
||
35 | NCNameValue $name, |
||
36 | array $attributes = [], |
||
37 | ?AnyAttribute $anyAttribute = null, |
||
38 | ?Annotation $annotation = null, |
||
39 | ?IDValue $id = null, |
||
40 | array $namespacedAttributes = [], |
||
41 | ) { |
||
42 | parent::__construct( |
||
43 | name: $name, |
||
44 | attributes: $attributes, |
||
45 | anyAttribute: $anyAttribute, |
||
46 | reference: null, |
||
47 | annotation: $annotation, |
||
48 | id: $id, |
||
49 | namespacedAttributes: $namespacedAttributes, |
||
50 | ); |
||
53 |