Total Complexity | 1 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | abstract class AbstractJwtAuth implements AuthMethodInterface |
||
13 | { |
||
14 | /** |
||
15 | * @param OpenIDClient $client |
||
16 | * @param array<string, mixed> $claims |
||
17 | * |
||
18 | * @return string |
||
19 | */ |
||
20 | abstract protected function createAuthJwt(OpenIDClient $client, array $claims = []): string; |
||
21 | |||
22 | 4 | public function createRequest( |
|
40 |