diff --git a/app/Console/Commands/DevCommands.php b/app/Console/Commands/DevCommands.php index 9d4d0a1e..8167dae9 100644 --- a/app/Console/Commands/DevCommands.php +++ b/app/Console/Commands/DevCommands.php @@ -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');