From 4744b02c40acad878aaecb636893b422e56ae7c0 Mon Sep 17 00:00:00 2001 From: Adam Blakey Date: Mon, 18 Mar 2024 15:46:39 +0000 Subject: [PATCH] style: Fixed style from composer cs:fix Signed-off-by: Adam Blakey --- core/Command/App/ListApps.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/Command/App/ListApps.php b/core/Command/App/ListApps.php index 07fc340d59720..d0b2d397e9f8c 100644 --- a/core/Command/App/ListApps.php +++ b/core/Command/App/ListApps.php @@ -101,7 +101,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int sort($enabledApps); foreach ($enabledApps as $app) { $apps['enabled'][$app] = $versions[$app] ?? true; - } + } } if ($showDisabledApps) { @@ -134,7 +134,7 @@ protected function writeAppList(InputInterface $input, OutputInterface $output, $output->writeln('Disabled:'); parent::writeArrayInOutputFormat($input, $output, $items['disabled']); } - break; + break; default: parent::writeArrayInOutputFormat($input, $output, $items);