Total Complexity | 4 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Coverage | 80% |
Changes | 0 |
1 | <?php |
||
8 | final class RegistrationRequest |
||
9 | { |
||
10 | /** |
||
11 | * @var PublicKeyCredentialCreationOptions |
||
12 | */ |
||
13 | private $creationOptions; |
||
14 | |||
15 | /** |
||
16 | * @var RegistrationContext |
||
17 | */ |
||
18 | private $context; |
||
19 | |||
20 | 1 | public function __construct(PublicKeyCredentialCreationOptions $creationOptions, RegistrationContext $context) |
|
24 | 1 | } |
|
25 | |||
26 | 1 | public function getClientOptions(): PublicKeyCredentialCreationOptions |
|
27 | { |
||
28 | 1 | return $this->creationOptions; |
|
29 | } |
||
30 | |||
31 | public function getClientOptionsJson(): array |
||
34 | } |
||
35 | |||
36 | 1 | public function getContext(): RegistrationContext |
|
39 | } |
||
40 | } |
||
41 |