Completed
Push — master ( c59d66...e0f002 )
by Matthew
03:01 queued 38s
created
Command/StartScheduledWorkerCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -77,9 +77,9 @@
 block discarded – undo
77 77
         // this is a workaround where we add the vars to the existing environment.
78 78
         if (defined('PHP_WINDOWS_VERSION_BUILD'))
79 79
         {
80
-            foreach($env as $key => $value)
80
+            foreach ($env as $key => $value)
81 81
             {
82
-                putenv($key."=". $value);
82
+                putenv($key."=".$value);
83 83
             }
84 84
             $env = null;
85 85
         }
Please login to merge, or discard this patch.
Command/StartWorkerCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -104,8 +104,8 @@
 block discarded – undo
104 104
         // That means we create a lot of problems with respect to user accounts and missing vars
105 105
         // this is a workaround where we add the vars to the existing environment.
106 106
         if (defined('PHP_WINDOWS_VERSION_BUILD')) {
107
-            foreach($env as $key => $value) {
108
-                putenv($key."=". $value);
107
+            foreach ($env as $key => $value) {
108
+                putenv($key."=".$value);
109 109
             }
110 110
             $env = null;
111 111
         }
Please login to merge, or discard this patch.