Completed
Pull Request — master (#6)
by
unknown
01:36
created
src/Env.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
     const USE_ENV_ARRAY = 16;
10 10
     const LOCAL_FIRST = 32;
11 11
 
12
-    public static $options = 15;   //All flags enabled
12
+    public static $options = 15; //All flags enabled
13 13
     public static $default = null; //Default value if not exists
14 14
 
15 15
     /**
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
         if (self::$options & self::USE_ENV_ARRAY) {
40 40
             $value = isset($_ENV[$name]) ? $_ENV[$name] : false;
41 41
         } elseif ((self::$options & self::LOCAL_FIRST)) {
42
-    		$value = getenv($name, true) ?: getenv($name);
42
+            $value = getenv($name, true) ?: getenv($name);
43 43
         } else {
44 44
             $value = getenv($name);
45 45
         }
Please login to merge, or discard this patch.