1 | <?php |
||
9 | class ImageController extends AbstractActionController |
||
10 | { |
||
11 | /** |
||
12 | * @var ImageServiceInterface |
||
13 | */ |
||
14 | protected $imageService; |
||
15 | |||
16 | /** |
||
17 | * Constructor |
||
18 | * |
||
19 | * @param ImageServiceInterface $imageService |
||
20 | */ |
||
21 | 4 | public function __construct(ImageServiceInterface $imageService) |
|
25 | |||
26 | /** |
||
27 | * Displays image |
||
28 | */ |
||
29 | 3 | public function displayAction() |
|
50 | } |
||
51 |
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.