1 | <?php |
||
25 | class ReRouteControllerModel implements ReRouteControllerModelInterface |
||
26 | { |
||
27 | protected $reRoute; |
||
28 | |||
29 | public function __construct(ReRouteInterface $reRoute) |
||
33 | |||
34 | /** |
||
35 | * Returns ResponseParameters to the given route with the given parameters. |
||
36 | * |
||
37 | * @param string $route The name of the route |
||
38 | * @param mixed $parameters An array of parameters |
||
39 | * |
||
40 | * @return Response |
||
41 | * |
||
42 | * @see Interface ReRouteControllerModelInterface |
||
43 | */ |
||
44 | public function __invoke($route, $parameters = [], Request $request = null) |
||
48 | } |
||
49 | |||
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.