1 | <?php |
||
12 | class UserProcessor implements ProcessorInterface |
||
13 | { |
||
14 | /** |
||
15 | * @var UserPasswordEncoderInterface |
||
16 | */ |
||
17 | private $encoder; |
||
18 | |||
19 | /** |
||
20 | * @param UserPasswordEncoderInterface $encoder |
||
21 | */ |
||
22 | public function __construct(UserPasswordEncoderInterface $encoder) |
||
26 | |||
27 | /** |
||
28 | * @inheritdoc |
||
29 | */ |
||
30 | public function preProcess($object) |
||
38 | |||
39 | /** |
||
40 | * @inheritdoc |
||
41 | */ |
||
42 | public function postProcess($object) |
||
45 | } |
||
46 |
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.