diff options
-rw-r--r-- | apps/files/lib/Command/ScanAppData.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/lib/Command/ScanAppData.php b/apps/files/lib/Command/ScanAppData.php index 93bc4cc5c44..365e2e3cb2e 100644 --- a/apps/files/lib/Command/ScanAppData.php +++ b/apps/files/lib/Command/ScanAppData.php @@ -43,7 +43,7 @@ class ScanAppData extends Base { parent::configure(); $this - ->setName('files:scanAppData') + ->setName('files:scan-app-data') ->setDescription('rescan the AppData folder') ->addOption( 'quiet', @@ -146,7 +146,7 @@ class ScanAppData extends Base { $verbose = $input->getOption('verbose'); $quiet = $input->getOption('quiet'); # restrict the verbosity level to VERBOSITY_VERBOSE - if ($output->getVerbosity()>OutputInterface::VERBOSITY_VERBOSE) { + if ($output->getVerbosity() > OutputInterface::VERBOSITY_VERBOSE) { $output->setVerbosity(OutputInterface::VERBOSITY_VERBOSE); } if ($quiet) { |