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');
try {
unlink('config.php');
} catch (\Exception $e) { }
} catch (\Exception $e) {
}
$this->info('Deleting env file');
try {
unlink('env.php');
} catch (\Exception $e) { }
} catch (\Exception $e) {
}
$this->info('Clearing caches');
Artisan::call('cache:clear');