Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
| JwtException | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
| getErrorKey | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace DevToolbelt\JwtTokenManager\Exceptions; |
| 6 | |
| 7 | use Exception; |
| 8 | |
| 9 | abstract class JwtException extends Exception |
| 10 | { |
| 11 | protected string $errorKey = 'jwtGenericError'; |
| 12 | |
| 13 | public function getErrorKey(): string |
| 14 | { |
| 15 | return $this->errorKey; |
| 16 | } |
| 17 | } |