Total Complexity | 5 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Coverage | 83.33% |
Changes | 1 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
5 | final class CredentialCreationOptions extends AbstractDictionary |
||
6 | { |
||
7 | /** |
||
8 | * @var PublicKeyCredentialCreationOptions|null |
||
9 | */ |
||
10 | private $publicKey; |
||
11 | |||
12 | 1 | public function __construct() |
|
13 | { |
||
14 | 1 | } |
|
15 | |||
16 | 1 | public function setPublicKeyOptions(PublicKeyCredentialCreationOptions $options): void |
|
17 | { |
||
18 | 1 | $this->publicKey = $options; |
|
19 | 1 | } |
|
20 | |||
21 | public function getPublicKeyOptions(): ?PublicKeyCredentialCreationOptions |
||
24 | } |
||
25 | |||
26 | 1 | public function getAsArray(): array |
|
35 |