Test Failed
Push — master ( 889770...3e99aa )
by Eugene
01:26
created
library/Common/Config/env.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 // Environments helpers from Laravel Framework
4
-if ( ! function_exists('value'))
4
+if (!function_exists('value'))
5 5
 {
6 6
     /**
7 7
      * Return the default value of the given value.
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
         return $value instanceof Closure ? $value() : $value;
15 15
     }
16 16
 }
17
-if ( ! function_exists('env'))
17
+if (!function_exists('env'))
18 18
 {
19 19
     /**
20 20
      * Gets the value of an environment variable. Supports boolean, empty and null.
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,9 @@
 block discarded – undo
27 27
     {
28 28
         $value = getenv($key);
29 29
 
30
-        if ($value === false) return value($default);
30
+        if ($value === false) {
31
+            return value($default);
32
+        }
31 33
 
32 34
         switch (strtolower($value))
33 35
         {
Please login to merge, or discard this patch.
library/Common/Debug/debug.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-if ( ! function_exists('dd'))
3
+if (!function_exists('dd'))
4 4
 {
5 5
     /**
6 6
      * Dump and die
Please login to merge, or discard this patch.