1 | <?php |
||
21 | final class ClaimCheckerManager |
||
22 | { |
||
23 | /** |
||
24 | * @var ClaimCheckerInterface[] |
||
25 | */ |
||
26 | private $checkers = []; |
||
27 | |||
28 | /** |
||
29 | * @param ClaimCheckerInterface $checker |
||
30 | */ |
||
31 | public function add(ClaimCheckerInterface $checker) |
||
35 | |||
36 | /** |
||
37 | * @param JWTInterface $jwt |
||
38 | */ |
||
39 | public function check(JWTInterface $jwt) |
||
52 | } |
||
53 |