Conditions | 1 |
Paths | 1 |
Total Lines | 18 |
Code Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
23 | public function boot() |
||
24 | { |
||
25 | $this->publishes([ |
||
26 | __DIR__.'/config/LaravelSlack.php' => config_path('LaravelSlack.php'), |
||
27 | ], 'config'); |
||
28 | |||
29 | $this->publishes([ |
||
30 | __DIR__.'/views/slack' => resource_path('views/slack'), |
||
31 | ]); |
||
32 | |||
33 | $this->publishes([ |
||
34 | __DIR__.'/views/slack/slack-asset' => public_path('/slack-asset'), |
||
35 | ], 'public'); |
||
36 | |||
37 | $this->publishes([ |
||
38 | __DIR__.'/controller/LaravelSlackController.php' => app_path('/Http/Controllers/LaravelSlackController.php'), |
||
39 | ], 'app'); |
||
40 | } |
||
41 | |||
57 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.