Completed
Push — master ( 8a9369...6732b2 )
by kacper
04:04
created
src/Async/AsyncCall.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@
 block discarded – undo
85 85
     {
86 86
         if (!self::$shutdownFunctionRegistered) {
87 87
             register_shutdown_function(
88
-                function () {
88
+                function() {
89 89
                     self::waitForProcessesToFinish();
90 90
                 }
91 91
             );
Please login to merge, or discard this patch.
src/Async/AsyncProcess.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
         $this->hasOnErrorSet = null !== $callback;
34 34
 
35 35
         $this->start(
36
-            function ($type, $buffer) use ($callback, $onError) {
36
+            function($type, $buffer) use ($callback, $onError) {
37 37
 
38 38
                 // if we can't decode probably child failed to execute
39 39
                 if ($decoded = base64_decode($buffer, true)) {
Please login to merge, or discard this patch.