1 | <?php |
||
24 | final class JWKSetLoader implements LoaderInterface |
||
25 | { |
||
26 | /** |
||
27 | * @var RouteCollection |
||
28 | */ |
||
29 | private $routes; |
||
30 | |||
31 | /** |
||
32 | * JWKSetLoader Constructor. |
||
33 | */ |
||
34 | public function __construct() |
||
38 | |||
39 | /** |
||
40 | * @param string $pattern |
||
41 | * @param string $name |
||
42 | */ |
||
43 | public function add(string $pattern, string $name) |
||
50 | |||
51 | /** |
||
52 | * {@inheritdoc} |
||
53 | */ |
||
54 | public function load($resource, $type = null) |
||
58 | |||
59 | /** |
||
60 | * {@inheritdoc} |
||
61 | */ |
||
62 | public function supports($resource, $type = null) |
||
66 | |||
67 | /** |
||
68 | * {@inheritdoc} |
||
69 | */ |
||
70 | public function getResolver() |
||
73 | |||
74 | /** |
||
75 | * {@inheritdoc} |
||
76 | */ |
||
77 | public function setResolver(LoaderResolverInterface $resolver) |
||
80 | } |
||
81 |