| Total Complexity | 1 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | final class AttributeDesignator extends AbstractAttributeDesignatorType implements SchemaValidatableElementInterface |
||
| 21 | { |
||
| 22 | use SchemaValidatableElementTrait; |
||
| 23 | |||
| 24 | |||
| 25 | /** |
||
| 26 | * Convert XML into an AttributeDesignatorType |
||
| 27 | * |
||
| 28 | * @param \DOMElement $xml The XML element we should load |
||
| 29 | * @return static |
||
| 30 | * |
||
| 31 | * @throws \SimpleSAML\XML\Exception\InvalidDOMElementException |
||
| 32 | * if the qualified name of the supplied element is wrong |
||
| 33 | */ |
||
| 34 | public static function fromXML(DOMElement $xml): static |
||
| 45 |