The method getKernel() does not seem to exist on object<Symfony\Component\Console\Application>.
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.
Loading history...
44
}
45
46
return $this->container;
47
}
48
49
/**
50
* Sets the container.
51
*
52
* @param ContainerInterface|null $container A ContainerInterface instance or null
53
*/
54
public function setContainer(ContainerInterface $container = null)
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.