| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 9 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 21 | 40 | public function boot() |
|
| 22 | { |
||
| 23 | 40 | $this->publishes([ |
|
| 24 | 40 | __DIR__ . '/config/composer-security-check.php' => config_path('composer-security-check.php'), |
|
| 25 | 40 | ], 'config'); |
|
| 26 | |||
| 27 | 40 | $this->loadViewsFrom(__DIR__ . '/views', 'composer-security-check'); |
|
| 28 | |||
| 29 | 40 | $this->publishes([ |
|
| 30 | 40 | __DIR__ . '/views' => base_path('resources/views/vendor/composer-security-check'), |
|
| 31 | 40 | ]); |
|
| 32 | 40 | } |
|
| 33 | |||
| 60 |