| 1 | <?php |
||
| 19 | final class JWKSetLoader implements LoaderInterface |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @var RouteCollection |
||
| 23 | */ |
||
| 24 | private $routes; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * JWKSetLoader Constructor. |
||
| 28 | */ |
||
| 29 | public function __construct() |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @param string $pattern |
||
| 36 | * @param string $name |
||
| 37 | */ |
||
| 38 | public function add(string $pattern, string $name) |
||
| 46 | |||
| 47 | /** |
||
| 48 | * {@inheritdoc} |
||
| 49 | */ |
||
| 50 | public function load($resource, $type = null) |
||
| 54 | |||
| 55 | /** |
||
| 56 | * {@inheritdoc} |
||
| 57 | */ |
||
| 58 | public function supports($resource, $type = null) |
||
| 62 | |||
| 63 | /** |
||
| 64 | * {@inheritdoc} |
||
| 65 | */ |
||
| 66 | public function getResolver() |
||
| 69 | |||
| 70 | /** |
||
| 71 | * {@inheritdoc} |
||
| 72 | */ |
||
| 73 | public function setResolver(LoaderResolverInterface $resolver) |
||
| 76 | } |
||
| 77 |