| Total Complexity | 2 |
| Total Lines | 29 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 18 | final class RequesterID extends AbstractSamlpElement |
||
| 19 | { |
||
| 20 | use XMLURIElementTrait; |
||
| 21 | |||
| 22 | |||
| 23 | /** |
||
| 24 | * @param string $content |
||
| 25 | */ |
||
| 26 | public function __construct(string $content) |
||
| 29 | } |
||
| 30 | |||
| 31 | |||
| 32 | /** |
||
| 33 | * Convert XML into an RequesterID |
||
| 34 | * |
||
| 35 | * @param \DOMElement $xml The XML element we should load |
||
| 36 | * @return self |
||
| 37 | * |
||
| 38 | * @throws \SimpleSAML\XML\Exception\InvalidDOMElementException |
||
| 39 | * If the qualified name of the supplied element is wrong |
||
| 40 | */ |
||
| 41 | public static function fromXML(DOMElement $xml): object |
||
| 50 |