| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 35 | public function handle() |
||
| 36 | { |
||
| 37 | Artisan::call('config:clear'); |
||
| 38 | Artisan::call('route:clear'); |
||
| 39 | Artisan::call('view:clear'); |
||
| 40 | Artisan::call('cache:clear'); |
||
| 41 | Artisan::call('config:cache'); |
||
| 42 | $this->frame('All caches of config, route, view and cache are cleared.'); |
||
| 43 | $this->frame('And config cache'); |
||
| 44 | return 'Success'; |
||
| 45 | } |
||
| 46 | } |