1 | <?php |
||
9 | class Password extends PasswordGrant |
||
10 | { |
||
11 | /** |
||
12 | * @var UserProviderInterface |
||
13 | */ |
||
14 | private $userProvider; |
||
15 | |||
16 | /** |
||
17 | * @var EncoderFactoryInterface |
||
18 | */ |
||
19 | private $encoderFactory; |
||
20 | |||
21 | /** |
||
22 | * @param UserProviderInterface $userProvider |
||
23 | * @param EncoderFactoryInterface $encoderFactory |
||
24 | */ |
||
25 | public function __construct(UserProviderInterface $userProvider, EncoderFactoryInterface $encoderFactory) |
||
32 | |||
33 | /** |
||
34 | * Init. |
||
35 | */ |
||
36 | private function init() |
||
55 | } |
||
56 |
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.