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) |
||
51 | |||
52 | /** |
||
53 | * {@inheritdoc} |
||
54 | */ |
||
55 | public function load($resource, $type = null) |
||
59 | |||
60 | /** |
||
61 | * {@inheritdoc} |
||
62 | */ |
||
63 | public function supports($resource, $type = null) |
||
67 | |||
68 | /** |
||
69 | * {@inheritdoc} |
||
70 | */ |
||
71 | public function getResolver() |
||
74 | |||
75 | /** |
||
76 | * {@inheritdoc} |
||
77 | */ |
||
78 | public function setResolver(LoaderResolverInterface $resolver) |
||
81 | } |
||
82 |