We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd129fb commit 2a72bdbCopy full SHA for 2a72bdb
app/Console/Commands/QueueUpdates.php
@@ -10,9 +10,8 @@
10
11
class QueueUpdates extends Command
12
{
13
- protected int $totalPushed = 0;
14
-
15
use RequestTargetVersion;
+ protected int $totalPushed = 0;
16
17
/**
18
* The name and signature of the console command.
app/Console/Traits/RequestTargetVersion.php
@@ -12,7 +12,7 @@ protected function getVersionChoices()
$targetVersion = $this->choice(
"What's the target version?",
- $releases->map(fn($release) => $release["version"])->values()->toArray()
+ $releases->map(fn ($release) => $release["version"])->values()->toArray()
);
return $targetVersion;
0 commit comments