| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | public function boot(): void |
||
| 14 | { |
||
| 15 | if ($this->app->runningInConsole()) { |
||
| 16 | $this->publishes([__DIR__ . '/../config/config.php' => config_path('laracache.php')], 'config'); |
||
| 17 | } |
||
| 18 | |||
| 19 | $this->commands([ |
||
| 20 | UpdateCacheCommand::class, |
||
| 21 | DeleteCacheCommand::class, |
||
| 22 | UpdateGroupCacheCommand::class, |
||
| 23 | DeleteGroupCacheCommand::class |
||
| 24 | ]); |
||
| 36 |