aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2017-03-22 15:59:55 -0600
committerMorris Jobke <hey@morrisjobke.de>2017-03-22 15:59:55 -0600
commitb26c8f8bd334b8840427af7aee9787f71e2951fe (patch)
tree9817abb245dfae7688d98f538dbf9709da55f920
parente3f8e416e68f62eaa22ec35b71280896705d8bf6 (diff)
downloadnextcloud-server-b26c8f8bd334b8840427af7aee9787f71e2951fe.tar.gz
nextcloud-server-b26c8f8bd334b8840427af7aee9787f71e2951fe.zip
Use proper name and code style
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
-rw-r--r--apps/files/lib/Command/ScanAppData.php4
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) {