1 | <?php |
||
13 | class OAuth2Listener implements ListenerInterface |
||
14 | { |
||
15 | /** |
||
16 | * @var TokenStorageInterface |
||
17 | */ |
||
18 | protected $tokenStorage; |
||
19 | |||
20 | /** |
||
21 | * @var AuthenticationManagerInterface |
||
22 | */ |
||
23 | protected $authenticationManager; |
||
24 | |||
25 | /** |
||
26 | * @var ResourceServer |
||
27 | */ |
||
28 | private $resourceServer; |
||
29 | |||
30 | /** |
||
31 | * @param TokenStorageInterface $tokenStorage |
||
32 | * @param AuthenticationManagerInterface $authenticationManager |
||
33 | * @param ResourceServer $resourceServer |
||
34 | */ |
||
35 | public function __construct( |
||
44 | |||
45 | /** |
||
46 | * {@InheritDoc} |
||
47 | */ |
||
48 | public function handle(GetResponseEvent $event) |
||
60 | } |
||
61 |
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.