| Total Complexity | 3 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 5 | final class TokenBindingStatus |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * Token binding was used when communicating with the Relying Party. |
||
| 9 | */ |
||
| 10 | public const PRESENT = 'present'; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * The client supports token binding, but it was not negotiated when communicating with the Relying Party. |
||
| 14 | */ |
||
| 15 | public const SUPPORTED = 'supported'; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @codeCoverageIgnore |
||
| 19 | */ |
||
| 20 | private function __construct() |
||
| 21 | { |
||
| 22 | } |
||
| 23 | |||
| 24 | 4 | public static function isValidValue(string $value): bool |
|
| 27 | } |
||
| 28 | } |
||
| 29 |