aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/lib/Command/Move.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files/lib/Command/Move.php')
-rw-r--r--apps/files/lib/Command/Move.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/files/lib/Command/Move.php b/apps/files/lib/Command/Move.php
index dd1cd1aae76..cd9e56f8e29 100644
--- a/apps/files/lib/Command/Move.php
+++ b/apps/files/lib/Command/Move.php
@@ -31,8 +31,8 @@ class Move extends Command {
$this
->setName('files:move')
->setDescription('Move a file or folder')
- ->addArgument('source', InputArgument::REQUIRED, "Source file id or path")
- ->addArgument('target', InputArgument::REQUIRED, "Target path")
+ ->addArgument('source', InputArgument::REQUIRED, 'Source file id or path')
+ ->addArgument('target', InputArgument::REQUIRED, 'Target path')
->addOption('force', 'f', InputOption::VALUE_NONE, "Don't ask for configuration and don't output any warnings");
}
@@ -88,7 +88,7 @@ class Move extends Command {
/** @var QuestionHelper $helper */
$helper = $this->getHelper('question');
- $question = new ConfirmationQuestion("<info>" . $targetInput . "</info> already exists, overwrite? [y/N] ", false);
+ $question = new ConfirmationQuestion('<info>' . $targetInput . '</info> already exists, overwrite? [y/N] ', false);
if (!$helper->ask($input, $output, $question)) {
return 1;
}