StyleCI fixes

This commit is contained in:
Nabeel Shahzad
2019-08-08 13:44:18 -04:00
parent 380c9d13b6
commit becf6c95f0

View File

@@ -242,14 +242,18 @@ class DevCommands extends Command
} }
$this->info('Deleting config file'); $this->info('Deleting config file');
try { try {
unlink('config.php'); unlink('config.php');
} catch (\Exception $e) { } } catch (\Exception $e) {
}
$this->info('Deleting env file'); $this->info('Deleting env file');
try { try {
unlink('env.php'); unlink('env.php');
} catch (\Exception $e) { } } catch (\Exception $e) {
}
$this->info('Clearing caches'); $this->info('Clearing caches');
Artisan::call('cache:clear'); Artisan::call('cache:clear');