Passed
Push — master ( 3576c0...bc4700 )
by
unknown
11:46
created
src/ValueHandler/EnvValueHandler.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,11 +19,11 @@
 block discarded – undo
19 19
 
20 20
         return preg_replace_callback(
21 21
             '/(%)([A-Z_0-9]+)(%)/',
22
-            function (array $matches) {
22
+            function(array $matches) {
23 23
                 return
24 24
                     $_ENV[$matches[2]]
25 25
                     ?? $_SERVER[$matches[2]]
26
-                    ?? (getenv($matches[2]) === false ? $matches[1] . $matches[2] . $matches[3] : getenv($matches[2]));
26
+                    ?? (getenv($matches[2]) === false ? $matches[1].$matches[2].$matches[3] : getenv($matches[2]));
27 27
             },
28 28
             $input
29 29
         ) ?? '';
Please login to merge, or discard this patch.