Completed
Push — master ( 5c27e0...cce238 )
by Afshin
02:46 queued 24s
created
core/Helpers/Env.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,11 +11,11 @@
 block discarded – undo
11 11
 
12 12
 class Env
13 13
 {
14
-    public function __invoke($filePath ,$key, $default = null)
14
+    public function __invoke($filePath, $key, $default = null)
15 15
     {
16 16
 
17 17
         if (file_exists($filePath . '/.env')) {
18
-            $_dotenv = new Dotenv($filePath );
18
+            $_dotenv = new Dotenv($filePath);
19 19
             $_dotenv->load();
20 20
             unset($_dotenv);
21 21
         }else {
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
             $_dotenv = new Dotenv($filePath );
19 19
             $_dotenv->load();
20 20
             unset($_dotenv);
21
-        }else {
21
+        } else {
22 22
             return '';
23 23
         }
24 24
 
Please login to merge, or discard this patch.