Conditions | 2 |
Paths | 2 |
Total Lines | 14 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
27 | public function boot() |
||
28 | { |
||
29 | // Carica configurazione |
||
30 | $this->publishes([ |
||
31 | __DIR__ . '/../config/supercache.php' => config_path('supercache.php'), |
||
32 | ], 'config'); |
||
33 | |||
34 | // Registra i comandi |
||
35 | if ($this->app->runningInConsole()) { |
||
36 | $this->commands([ |
||
37 | GetAllTagsOfKeyCommand::class, |
||
38 | ListenerCommand::class, |
||
39 | CleanOrphanedKeysCommand::class, |
||
40 | GetClusterNodesCommand::class, |
||
41 | ]); |
||
45 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.