| 1 | <?php |
||
| 18 | final class JWKSetLoader implements LoaderInterface |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * @var bool |
||
| 22 | */ |
||
| 23 | private $loaded = false; |
||
|
|
|||
| 24 | |||
| 25 | /** |
||
| 26 | * @var \Symfony\Component\Routing\RouteCollection |
||
| 27 | */ |
||
| 28 | private $routes; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * JWKSetLoader Constructor |
||
| 32 | */ |
||
| 33 | public function __construct() |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @param string $pattern |
||
| 40 | * @param string $service |
||
| 41 | */ |
||
| 42 | public function addJWKSetRoute($pattern, $service) |
||
| 48 | |||
| 49 | /** |
||
| 50 | * {@inheritdoc} |
||
| 51 | */ |
||
| 52 | public function load($resource, $type = null) |
||
| 56 | |||
| 57 | /** |
||
| 58 | * {@inheritdoc} |
||
| 59 | */ |
||
| 60 | public function supports($resource, $type = null) |
||
| 64 | |||
| 65 | /** |
||
| 66 | * {@inheritdoc} |
||
| 67 | */ |
||
| 68 | public function getResolver() {} |
||
| 69 | |||
| 70 | /** |
||
| 71 | * {@inheritdoc} |
||
| 72 | */ |
||
| 73 | public function setResolver(LoaderResolver $resolver) {} |
||
| 74 | } |
||
| 75 |
This check marks private properties in classes that are never used. Those properties can be removed.