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