The method getTranslator() does not seem to exist on object<App\Controller\IndexController>.
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...
18
1
}
19
20
2
public function indexAction()
21
{
22
2
if (!$this->getParam('locale')) {
23
1
return new Response\RedirectResponse('/' . $this->locale);
The return type of return new \Zend\Diactor...e('/' . $this->locale); (Zend\Diactoros\Response\RedirectResponse) is incompatible with the return type of the parent method Bone\Mvc\Controller::indexAction of type array<string,string>.
If you return a value from a function or method, it should be a sub-type of the
type that is given by the parent type f.e. an interface, or abstract method.
This is more formally defined by the
Lizkov substitution principle,
and guarantees that classes that depend on the parent type can use any instance
of a child type interchangably. This principle also belongs to the
SOLID principles
for object oriented design.
Our function my_function expects a Post object, and outputs the author
of the post. The base class Post returns a simple string and outputting a
simple string will work just fine. However, the child class BlogPost which
is a sub-type of Post instead decided to return an object, and is
therefore violating the SOLID principles. If a BlogPost were passed to
my_function, PHP would not complain, but ultimately fail when executing the
strtoupper call in its body.
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.