1 | <?php |
||
9 | final class AuthSession implements AuthSessionInterface |
||
10 | { |
||
11 | /** @var null|string */ |
||
12 | private $state; |
||
13 | |||
14 | /** @var null|string */ |
||
15 | private $nonce; |
||
16 | |||
17 | /** @var null|string */ |
||
18 | private $codeVerifier; |
||
19 | |||
20 | /** @var array<string, mixed> */ |
||
21 | private $customs = []; |
||
22 | |||
23 | 3 | public function getState(): ?string |
|
27 | |||
28 | 3 | public function getNonce(): ?string |
|
32 | |||
33 | 2 | public function getCodeVerifier(): ?string |
|
37 | |||
38 | /** |
||
39 | * @return array<string, mixed> |
||
|
|||
40 | */ |
||
41 | 2 | public function getCustoms(): array |
|
45 | |||
46 | 3 | public function setState(?string $state): void |
|
50 | |||
51 | 3 | public function setNonce(?string $nonce): void |
|
55 | |||
56 | 3 | public function setCodeVerifier(?string $codeVerifier): void |
|
60 | |||
61 | /** |
||
62 | * @param array<string, mixed> $customs |
||
63 | */ |
||
64 | 3 | public function setCustoms(array $customs): void |
|
68 | |||
69 | 2 | public static function fromArray(array $array): AuthSessionInterface |
|
79 | |||
80 | /** |
||
81 | * @return array<string, mixed> |
||
82 | */ |
||
83 | 1 | public function jsonSerialize(): array |
|
92 | } |
||
93 |
This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.