Conditions | 2 |
Paths | 2 |
Total Lines | 14 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
24 | public function checkClaims(JWTInterface $jwt) |
||
25 | { |
||
26 | $checkers = $this->getSupportedClaimCheckers(); |
||
27 | $checked_claims = []; |
||
28 | |||
29 | foreach ($checkers as $checker) { |
||
30 | $checked_claims = array_merge( |
||
31 | $checked_claims, |
||
32 | $checker->checkClaim($jwt) |
||
33 | ); |
||
34 | } |
||
35 | |||
36 | return $checked_claims; |
||
37 | } |
||
38 | |||
51 |