| 1 | <?php |
||
| 17 | final class JWKSetController |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * @var \Jose\Object\JWKSetInterface |
||
| 21 | */ |
||
| 22 | private $jwkset; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * JWKSetController constructor. |
||
| 26 | * |
||
| 27 | * @param \Jose\Object\JWKSetInterface $jwkset |
||
| 28 | */ |
||
| 29 | public function __construct(JWKSetInterface $jwkset) |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @return \Symfony\Component\HttpFoundation\Response |
||
| 36 | */ |
||
| 37 | public function jsonAction() |
||
| 41 | |||
| 42 | /** |
||
| 43 | * @return \Symfony\Component\HttpFoundation\Response |
||
| 44 | */ |
||
| 45 | public function pemAction() |
||
| 49 | } |
||
| 50 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.