Skip to content

Commit 07ad796

Browse files
committed
cs fix
1 parent 1f1baf6 commit 07ad796

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

app/Console/Commands/QueueUpdates.php

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -54,17 +54,17 @@ public function handle(): int
5454

5555
// Chunk and push to queue
5656
$sites->chunkById(
57-
100,
58-
function (Collection $chunk) use ($targetVersion) {
59-
// Show progress
60-
$this->output->write('.');
57+
100,
58+
function (Collection $chunk) use ($targetVersion) {
59+
// Show progress
60+
$this->output->write('.');
6161

62-
$this->totalPushed += $chunk->count();
62+
$this->totalPushed += $chunk->count();
6363

64-
// Push each site check to queue
65-
$chunk->each(fn ($site) => UpdateSite::dispatch($site, $targetVersion));
66-
}
67-
);
64+
// Push each site check to queue
65+
$chunk->each(fn ($site) => UpdateSite::dispatch($site, $targetVersion));
66+
}
67+
);
6868

6969
// Result
7070
$this->output->writeln("");

0 commit comments

Comments
 (0)