Total Complexity | 1 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
14 | abstract class AbstractOpenAttrs extends AbstractAnyType |
||
15 | { |
||
16 | /** The namespace-attribute for the xs:any element */ |
||
17 | public const XS_ANY_ELT_NAMESPACE = []; |
||
18 | |||
19 | /** The namespace-attribute for the xs:anyAttribute element */ |
||
20 | public const XS_ANY_ATTR_NAMESPACE = NS::OTHER; |
||
21 | |||
22 | |||
23 | /** |
||
24 | * AbstractAnyType constructor |
||
25 | * |
||
26 | * @param array<\SimpleSAML\XML\Attribute> $attributes |
||
27 | */ |
||
28 | public function __construct( |
||
42 |