Completed
Branch dev (05d0ad)
by Raffael
02:25
created
src/Worker.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -207,7 +207,7 @@  discard block
 block discarded – undo
207 207
                     break;
208 208
                 }
209 209
 
210
-                $this->jobs->next($cursor, function () {
210
+                $this->jobs->next($cursor, function() {
211 211
                     $this->processAll();
212 212
                 });
213 213
 
@@ -220,7 +220,7 @@  discard block
 block discarded – undo
220 220
                 'category' => get_class($this),
221 221
             ]);
222 222
 
223
-            $this->jobs->next($cursor, function () {
223
+            $this->jobs->next($cursor, function() {
224 224
                 $this->processAll();
225 225
             });
226 226
 
Please login to merge, or discard this patch.
src/Queue.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
 
170 170
         while ($this->loop()) {
171 171
             $event = $cursor_events->current();
172
-            $this->events->next($cursor_events, function () {
172
+            $this->events->next($cursor_events, function() {
173 173
                 $this->main();
174 174
             });
175 175
             $cursor_events->next();
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
                     break;
203 203
                 }
204 204
 
205
-                $this->jobs->next($cursor_jobs, function () {
205
+                $this->jobs->next($cursor_jobs, function() {
206 206
                     $this->main();
207 207
                 });
208 208
 
@@ -211,7 +211,7 @@  discard block
 block discarded – undo
211 211
 
212 212
             $job = $cursor_jobs->current();
213 213
 
214
-            $this->jobs->next($cursor_jobs, function () {
214
+            $this->jobs->next($cursor_jobs, function() {
215 215
                 $this->main();
216 216
             });
217 217
 
Please login to merge, or discard this patch.