Total Complexity | 1 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
15 | abstract class AbstractNamedAttributeGroup extends AbstractAttributeGroup |
||
16 | { |
||
17 | /** The namespace-attribute for the xs:anyAttribute element */ |
||
18 | public const XS_ANY_ATTR_NAMESPACE = NamespaceEnum::Other; |
||
19 | |||
20 | |||
21 | /** |
||
22 | * NamedAttributeGroup constructor |
||
23 | * |
||
24 | * @param \SimpleSAML\XMLSchema\Type\NCNameValue $name |
||
25 | * @param ( |
||
26 | * \SimpleSAML\XMLSchema\XML\LocalAttribute| |
||
27 | * \SimpleSAML\XMLSchema\XML\ReferencedAttributeGroup |
||
28 | * )[] $attributes |
||
29 | * @param \SimpleSAML\XMLSchema\XML\AnyAttribute|null $anyAttribute |
||
30 | * @param \SimpleSAML\XMLSchema\XML\Annotation|null $annotation |
||
31 | * @param \SimpleSAML\XMLSchema\Type\IDValue|null $id |
||
32 | * @param array<\SimpleSAML\XML\Attribute> $namespacedAttributes |
||
33 | */ |
||
34 | public function __construct( |
||
53 |