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