aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/lib
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2020-04-09 16:05:56 +0200
committerChristoph Wurst <christoph@winzerhof-wurst.at>2020-04-09 16:05:56 +0200
commit42625a46be495ea1c60ac8fe8e13946fd9ed9732 (patch)
tree1b52fc65b8a5888f13f48226b2cb6672456c0b55 /apps/files/lib
parentc56a273b39186c509c57ef6bec221d3c4e3d81d3 (diff)
downloadnextcloud-server-42625a46be495ea1c60ac8fe8e13946fd9ed9732.tar.gz
nextcloud-server-42625a46be495ea1c60ac8fe8e13946fd9ed9732.zip
Remove spaces after method or function call
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'apps/files/lib')
-rw-r--r--apps/files/lib/Command/Scan.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/lib/Command/Scan.php b/apps/files/lib/Command/Scan.php
index 38d4b1cc979..f628ed2e0e0 100644
--- a/apps/files/lib/Command/Scan.php
+++ b/apps/files/lib/Command/Scan.php
@@ -173,7 +173,7 @@ class Scan extends Base {
$inputPath = $input->getOption('path');
if ($inputPath) {
$inputPath = '/' . trim($inputPath, '/');
- list (, $user,) = explode('/', $inputPath, 3);
+ list(, $user,) = explode('/', $inputPath, 3);
$users = [$user];
} else if ($input->getOption('all')) {
$users = $this->userManager->search('');