Conditions | 1 |
Paths | 1 |
Total Lines | 19 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | public function boot() |
||
17 | { |
||
18 | $this->publishes( |
||
|
|||
19 | [ |
||
20 | __DIR__ . '/../../config/smokescreen.php' => config_path('smokescreen.php'), |
||
21 | ], |
||
22 | 'config' |
||
23 | ); |
||
24 | |||
25 | $this->publishes( |
||
26 | [ |
||
27 | __DIR__ . '/../../stubs' => resource_path('views/vendor/smokescreen'), |
||
28 | ], |
||
29 | 'stub' |
||
30 | ); |
||
31 | |||
32 | $this->loadViewsFrom(__DIR__ . '/../../stubs', 'smokescreen'); |
||
33 | |||
34 | $this->commands(MakeTransformerCommand::class); |
||
35 | } |
||
58 |
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.