Total Complexity | 1 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | final class Output extends AbstractParam |
||
17 | { |
||
18 | /** @var string */ |
||
19 | final public const LOCALNAME = 'output'; |
||
20 | |||
21 | |||
22 | /** |
||
23 | * Initialize a output-element. |
||
24 | * |
||
25 | * @param \DOMElement $xml The XML element we should load. |
||
26 | * @return static |
||
27 | * |
||
28 | * @throws \SimpleSAML\XML\Exception\InvalidDOMElementException |
||
29 | * if the qualified name of the supplied element is wrong |
||
30 | */ |
||
31 | public static function fromXML(DOMElement $xml): static |
||
43 |