| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 14 | public function handle() |
||
| 15 | { |
||
| 16 | $this->alert('delete Mongicommerce config file...'); |
||
| 17 | |||
| 18 | $config_file = config_path('mongicommerce.php'); |
||
| 19 | #Config file |
||
| 20 | if (file_exists($config_file)) { |
||
| 21 | File::delete($config_file); |
||
| 22 | error_log('Cancello il file di configurazione'); |
||
| 23 | } |
||
| 24 | $this->alert('Terminate successfully'); |
||
| 25 | } |
||
| 27 |