Total Complexity | 3 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | final class UnknownSubjectStatement extends AbstractSubjectStatement |
||
17 | { |
||
18 | /** |
||
19 | * @param \SimpleSAML\XML\Chunk $chunk The whole SubjectStatement element as a chunk object. |
||
20 | * @param \SimpleSAML\XMLSchema\Type\QNameValue $type The xsi:type of this SubjectStatement |
||
21 | */ |
||
22 | public function __construct( |
||
28 | } |
||
29 | |||
30 | |||
31 | /** |
||
32 | * Get the raw version of this SubjectStatement as a Chunk. |
||
33 | * |
||
34 | * @return \SimpleSAML\XML\Chunk |
||
35 | */ |
||
36 | public function getRawSubjectStatement(): Chunk |
||
39 | } |
||
40 | |||
41 | |||
42 | /** |
||
43 | * Convert this unknown SubjectStatement to XML. |
||
44 | * |
||
45 | * @param \DOMElement|null $parent The element we are converting to XML. |
||
46 | * @return \DOMElement The XML element after adding the data corresponding to this unknown SubjectStatement. |
||
47 | */ |
||
48 | public function toXML(?DOMElement $parent = null): DOMElement |
||
53 |