| Conditions | 1 |
| Paths | 1 |
| Total Lines | 20 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 32 | public function __construct( |
||
| 33 | QNameValue $base, |
||
| 34 | // xs:typeDefParticle |
||
| 35 | ?TypeDefParticleInterface $particle = null, |
||
| 36 | // xs:attrDecls |
||
| 37 | array $attributes = [], |
||
| 38 | ?AnyAttribute $anyAttribute = null, |
||
| 39 | // parent defined |
||
| 40 | ?Annotation $annotation = null, |
||
| 41 | ?IDValue $id = null, |
||
| 42 | array $namespacedAttributes = [], |
||
| 43 | ) { |
||
| 44 | parent::__construct( |
||
| 45 | base: $base, |
||
| 46 | particle: $particle, |
||
| 47 | attributes: $attributes, |
||
| 48 | anyAttribute: $anyAttribute, |
||
| 49 | annotation: $annotation, |
||
| 50 | id: $id, |
||
| 51 | namespacedAttributes: $namespacedAttributes, |
||
| 52 | ); |
||
| 55 |