Passed
Branch dev (266621)
by Raffael
05:09
created
src/Queue.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -181,17 +181,17 @@  discard block
 block discarded – undo
181 181
                     break;
182 182
                 }
183 183
 
184
-                $this->events->next($cursor_events, function () {
184
+                $this->events->next($cursor_events, function() {
185 185
                     $this->main();
186 186
                 });
187 187
             }
188 188
 
189 189
             $event = $cursor_events->current();
190
-            $this->events->next($cursor_events, function () {
190
+            $this->events->next($cursor_events, function() {
191 191
                 $this->main();
192 192
             });
193 193
 
194
-            if($event !== null) {
194
+            if ($event !== null) {
195 195
                 $this->handleEvent($event);
196 196
             }
197 197
 
@@ -207,7 +207,7 @@  discard block
 block discarded – undo
207 207
                     break;
208 208
                 }
209 209
 
210
-                $this->jobs->next($cursor_jobs, function () {
210
+                $this->jobs->next($cursor_jobs, function() {
211 211
                     $this->main();
212 212
                 });
213 213
 
@@ -216,7 +216,7 @@  discard block
 block discarded – undo
216 216
 
217 217
             $job = $cursor_jobs->current();
218 218
 
219
-            $this->jobs->next($cursor_jobs, function () {
219
+            $this->jobs->next($cursor_jobs, function() {
220 220
                 $this->main();
221 221
             });
222 222
 
Please login to merge, or discard this patch.