Skip to content

Commit

Permalink
TASK: use symbols instead of word to identify Frozen State
Browse files Browse the repository at this point in the history
  • Loading branch information
crydotsnake committed Jun 8, 2024
1 parent 81669f0 commit 309770a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Neos.Flow/Classes/Command/PackageCommandController.php
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ public function listCommand(): void
$tableHeaderRows = ['Package Key', 'Installed Version', 'Frozen State'];
/** @var PackageInterface|PackageKeyAwareInterface $package */
foreach ($availablePackages as $packageKey => $package) {
$frozenState = ($freezeSupported && $this->packageManager->isPackageFrozen($packageKey) ? 'Frozen' : 'Not Frozen');
$frozenState = ($freezeSupported && $this->packageManager->isPackageFrozen($packageKey) ? '' : '');
$tableRows[] = [$package->getPackageKey(), $package->getInstalledVersion(), $frozenState];
}
$this->output->outputTable($tableRows, $tableHeaderRows);
Expand Down

0 comments on commit 309770a

Please sign in to comment.