Total Complexity | 1 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
18 | final class Curve extends AbstractCurveType |
||
19 | { |
||
20 | /** |
||
21 | * Convert XML into a class instance |
||
22 | * |
||
23 | * @param \DOMElement $xml The XML element we should load |
||
24 | * @return static |
||
25 | * |
||
26 | * @throws \SimpleSAML\XMLSchema\Exception\InvalidDOMElementException |
||
27 | * If the qualified name of the supplied element is wrong |
||
28 | */ |
||
29 | public static function fromXML(DOMElement $xml): static |
||
48 |