| Total Complexity | 2 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | class AuthenticationTagParameter extends JWTParameter |
||
| 15 | { |
||
| 16 | use Base64URLValue; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * Constructor. |
||
| 20 | * |
||
| 21 | * @param string $tag Base64url encoded authentication tag |
||
| 22 | */ |
||
| 23 | 8 | public function __construct(string $tag) |
|
| 27 | 7 | } |
|
| 28 | |||
| 29 | /** |
||
| 30 | * Get the authentication tag. |
||
| 31 | */ |
||
| 32 | 5 | public function authenticationTag(): string |
|
| 37 |