1 | <?php |
||
21 | class Command extends BaseCommand |
||
22 | { |
||
23 | /** |
||
24 | * configure |
||
25 | * |
||
26 | * @return void |
||
27 | */ |
||
28 | public function configure() |
||
33 | |||
34 | /** |
||
35 | * Get kernel. |
||
36 | * |
||
37 | * @return \Symfony\Component\HttpKernel\KernelInterface |
||
38 | */ |
||
39 | protected function getKernel() |
||
43 | |||
44 | /** |
||
45 | * Get Container. |
||
46 | * |
||
47 | * @return \Symfony\Component\DependencyInjection\ContainerInterface |
||
48 | */ |
||
49 | protected function getContainer() |
||
53 | } |
||
54 |
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.