Total Complexity | 2 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | final class UnknownID extends AbstractBaseID |
||
15 | { |
||
16 | /** @var \SimpleSAML\XML\Chunk */ |
||
17 | private Chunk $chunk; |
||
18 | |||
19 | /** |
||
20 | * @param \SimpleSAML\XML\Chunk $chunk The whole BaseID element as a chunk object. |
||
21 | * @param string $type The xsi:type of this identifier. |
||
22 | * @param string|null $NameQualifier |
||
23 | * @param string|null $SPNameQualifier |
||
24 | */ |
||
25 | public function __construct( |
||
33 | } |
||
34 | |||
35 | |||
36 | /** |
||
37 | * Get the raw version of this identifier as a Chunk |
||
38 | * |
||
39 | * @return \SimpleSAML\XML\Chunk |
||
40 | */ |
||
41 | public function getRawIdentifier(): Chunk |
||
46 |