Passed
Branch dev (b82c9a)
by Raffael
05:11
created
src/Queue.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -286,7 +286,7 @@  discard block
 block discarded – undo
286 286
                     break;
287 287
                 }
288 288
 
289
-                $this->jobs->next($cursor, function () {
289
+                $this->jobs->next($cursor, function() {
290 290
                     $this->main();
291 291
                 });
292 292
 
@@ -294,7 +294,7 @@  discard block
 block discarded – undo
294 294
             }
295 295
 
296 296
             $job = $cursor->current();
297
-            $this->jobs->next($cursor, function () {
297
+            $this->jobs->next($cursor, function() {
298 298
                 $this->main();
299 299
             });
300 300
 
Please login to merge, or discard this patch.
src/Scheduler.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -373,7 +373,7 @@  discard block
 block discarded – undo
373 373
                     return $this->listen($callback, $query);
374 374
                 }
375 375
 
376
-                $this->events->next($cursor, function () use ($callback, $query) {
376
+                $this->events->next($cursor, function() use ($callback, $query) {
377 377
                     return $this->listen($callback, $query);
378 378
                 });
379 379
 
@@ -381,7 +381,7 @@  discard block
 block discarded – undo
381 381
             }
382 382
 
383 383
             $result = $cursor->current();
384
-            $this->events->next($cursor, function () use ($callback, $query) {
384
+            $this->events->next($cursor, function() use ($callback, $query) {
385 385
                 $this->listen($callback, $query);
386 386
             });
387 387
 
Please login to merge, or discard this patch.
src/Worker.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
                     break;
135 135
                 }
136 136
 
137
-                $this->jobs->next($cursor, function () {
137
+                $this->jobs->next($cursor, function() {
138 138
                     $this->main();
139 139
                 });
140 140
 
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
             }
143 143
 
144 144
             $job = $cursor->current();
145
-            $this->jobs->next($cursor, function () {
145
+            $this->jobs->next($cursor, function() {
146 146
                 $this->main();
147 147
             });
148 148
 
Please login to merge, or discard this patch.
src/Process.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
                     return $this->wait();
120 120
                 }
121 121
 
122
-                $this->events->next($cursor, function () {
122
+                $this->events->next($cursor, function() {
123 123
                     $this->wait();
124 124
                 });
125 125
 
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
             }
128 128
 
129 129
             $event = $cursor->current();
130
-            $this->events->next($cursor, function () {
130
+            $this->events->next($cursor, function() {
131 131
                 $this->wait();
132 132
             });
133 133
 
Please login to merge, or discard this patch.