Passed
Push — master ( 948a31...a393a4 )
by Shiyu
01:48
created
src/Job.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
 
104 104
         $this->chain = new SplStack();
105 105
 
106
-        ($this->ender = Promise::deferred())->catch(function (...$args) {
106
+        ($this->ender = Promise::deferred())->catch(function(...$args) {
107 107
             $this->killed(...$args);
108 108
         });
109 109
 
@@ -224,9 +224,9 @@  discard block
 block discarded – undo
224 224
     {
225 225
         $this->sleep = $await;
226 226
 
227
-        $await->then(function ($r = null) {
227
+        $await->then(function($r = null) {
228 228
             $this->wakeup($r);
229
-        }, function (Throwable $e = null) {
229
+        }, function(Throwable $e = null) {
230 230
             $this->wakeup($e ?? new RejectedException());
231 231
         });
232 232
 
Please login to merge, or discard this patch.