diff options
Diffstat (limited to 'core/Command/App/Install.php')
-rw-r--r-- | core/Command/App/Install.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Command/App/Install.php b/core/Command/App/Install.php index aa263a8f3bf..4e9c846cbd4 100644 --- a/core/Command/App/Install.php +++ b/core/Command/App/Install.php @@ -56,7 +56,7 @@ class Install extends Command { protected function execute(InputInterface $input, OutputInterface $output): int { $appId = $input->getArgument('app-id'); - $forceEnable = (bool) $input->getOption('force'); + $forceEnable = (bool)$input->getOption('force'); if ($this->appManager->isInstalled($appId)) { $output->writeln($appId . ' already installed'); |