Conditions | 2 |
Paths | 2 |
Total Lines | 14 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | public function boot() |
||
21 | { |
||
22 | $this->publishes([ |
||
23 | __DIR__.'/query_filters.php' => config_path('query_filters.php'), |
||
24 | ], 'query_filters_config'); |
||
25 | |||
26 | $this->mergeConfigFrom( |
||
27 | __DIR__.'/query_filters.php', 'query_filters' |
||
28 | ); |
||
29 | |||
30 | if ($this->app->runningInConsole()) { |
||
|
|||
31 | $this->commands(MakeQueryFiltersCommand::class); |
||
32 | } |
||
33 | } |
||
34 | } |
||
35 |
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.