Skip to content

Commit 2a72bdb

Browse files
committed
cs fix
1 parent bd129fb commit 2a72bdb

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

app/Console/Commands/QueueUpdates.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,8 @@
1010

1111
class QueueUpdates extends Command
1212
{
13-
protected int $totalPushed = 0;
14-
1513
use RequestTargetVersion;
14+
protected int $totalPushed = 0;
1615

1716
/**
1817
* The name and signature of the console command.

app/Console/Traits/RequestTargetVersion.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ protected function getVersionChoices()
1212

1313
$targetVersion = $this->choice(
1414
"What's the target version?",
15-
$releases->map(fn($release) => $release["version"])->values()->toArray()
15+
$releases->map(fn ($release) => $release["version"])->values()->toArray()
1616
);
1717

1818
return $targetVersion;

0 commit comments

Comments
 (0)