Total Complexity | 5 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
21 | class NullCookieValue implements CookieValueInterface |
||
22 | { |
||
23 | public static function deserialize(string $serializedData): CookieValueInterface |
||
24 | { |
||
25 | return new self; |
||
26 | } |
||
27 | |||
28 | public function serialize(): string |
||
31 | } |
||
32 | |||
33 | public function meetsRequiredLoa(float $requiredLoa): bool |
||
34 | { |
||
35 | return false; |
||
36 | } |
||
37 | |||
38 | public function authenticationTime(): int |
||
39 | { |
||
40 | return -1; |
||
41 | } |
||
42 | |||
43 | public function secondFactorId(): string |
||
46 | } |
||
47 | } |
||
48 |