@@ -373,7 +373,7 @@ discard block |
||
| 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 |
||
| 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 | |
@@ -119,7 +119,7 @@ discard block |
||
| 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 |
||
| 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 | |
@@ -288,7 +288,7 @@ |
||
| 288 | 288 | protected function collectJob(array $job, int $status, $from_status = JobInterface::STATUS_WAITING): bool |
| 289 | 289 | { |
| 290 | 290 | $set = [ |
| 291 | - 'status' => $status, |
|
| 291 | + 'status' => $status, |
|
| 292 | 292 | ]; |
| 293 | 293 | |
| 294 | 294 | if (JobInterface::STATUS_PROCESSING === $status) { |
@@ -207,7 +207,7 @@ discard block |
||
| 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 |
||
| 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 | |
@@ -181,17 +181,17 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 | |