From becf6c95f03f594fe7d7f03e7a050f24b2193376 Mon Sep 17 00:00:00 2001 From: Nabeel Shahzad Date: Thu, 8 Aug 2019 13:44:18 -0400 Subject: [PATCH] StyleCI fixes --- app/Console/Commands/DevCommands.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) 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');