From 10d5835815d0d5c8fc4a656fa0cdff16e6691077 Mon Sep 17 00:00:00 2001 From: Harlan Wilton Date: Sat, 20 Apr 2019 16:31:18 +1000 Subject: [PATCH] Apply fixes from StyleCI (#9) --- app/Tasks/ParseDotEnvFile.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/Tasks/ParseDotEnvFile.php b/app/Tasks/ParseDotEnvFile.php index 0b90c5f..d6ba5b1 100644 --- a/app/Tasks/ParseDotEnvFile.php +++ b/app/Tasks/ParseDotEnvFile.php @@ -3,8 +3,8 @@ namespace Laradock\Tasks; use Dotenv\Dotenv; -use Illuminate\Support\Facades\File; use Illuminate\Support\Facades\Log; +use Illuminate\Support\Facades\File; class ParseDotEnvFile { @@ -17,8 +17,8 @@ class ParseDotEnvFile public function __construct($path = null, $file = null) { $path = $path ?? \Laradock\workingDirectory(); - if (!File::exists($path . '/' . $file)) { - Log::warning('Missing ' . $file . ' file at ' . $path); + if (! File::exists($path.'/'.$file)) { + Log::warning('Missing '.$file.' file at '.$path); } $this->dotEnv = Dotenv::create($path ?? \Laradock\workingDirectory(), $file); }