Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | public function boot() |
||
15 | { |
||
16 | $this->loadTranslationsFrom(dirname(__DIR__).'/resources/lang', 'netgsm'); |
||
17 | |||
18 | if ($this->app->runningInConsole()) { |
||
19 | $this->publishes([ |
||
20 | dirname(__DIR__).'/resources/lang' => resource_path('lang/vendor/netgsm'), |
||
21 | ]); |
||
22 | |||
23 | $this->publishes([ |
||
24 | __DIR__.'/../config/config.php' => config_path('netgsm.php'), |
||
25 | ], 'config'); |
||
26 | } |
||
53 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.