Completed
Push — master ( f861b9...47e1e9 )
by Miroslaw
19s queued 16s
created
src/Env.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
 
28 28
         foreach ($env_lines as $line) {
29 29
             if (strlen(trim($line)) && !(strpos(trim($line), '#') === 0)) {
30
-                [$key, $val] = explode('=', (string)$line, 2);
30
+                [$key, $val] = explode('=', (string) $line, 2);
31 31
                 $this->_envVars[$key] = $this->_stripValue($val);
32 32
             }
33 33
         }
Please login to merge, or discard this patch.