Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
1 | <?php |
||
36 | protected function defineRoutes() |
||
37 | { |
||
38 | if (! $this->app->routesAreCached()) { |
||
1 ignored issue
–
show
|
|||
39 | $router = app('router'); |
||
40 | |||
41 | $router->group(['namespace' => 'Nathanmac\QRCode\Controllers'], function ($router) { |
||
42 | require __DIR__.'/routes.php'; |
||
43 | }); |
||
44 | } |
||
45 | } |
||
46 | } |
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.