Total Complexity | 2 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
22 | final class GetComplete extends AbstractSamlpElement implements SchemaValidatableElementInterface |
||
23 | { |
||
24 | use SchemaValidatableElementTrait; |
||
25 | use TypedTextContentTrait; |
||
|
|||
26 | |||
27 | |||
28 | /** @var string */ |
||
29 | public const TEXTCONTENT_TYPE = SAMLAnyURIValue::class; |
||
30 | |||
31 | |||
32 | /** |
||
33 | * Create a class from an array |
||
34 | * |
||
35 | * @param array $data |
||
36 | * @return static |
||
37 | */ |
||
38 | public static function fromArray(array $data): static |
||
45 | ); |
||
46 | } |
||
47 | |||
48 | |||
49 | /** |
||
50 | * Create an array from this class |
||
51 | * |
||
52 | * @return array |
||
53 | */ |
||
54 | public function toArray(): array |
||
59 |