aboutsummaryrefslogtreecommitdiffstats
path: root/core/Command/FilesMetadata/Get.php
diff options
context:
space:
mode:
Diffstat (limited to 'core/Command/FilesMetadata/Get.php')
-rw-r--r--core/Command/FilesMetadata/Get.php58
1 files changed, 29 insertions, 29 deletions
diff --git a/core/Command/FilesMetadata/Get.php b/core/Command/FilesMetadata/Get.php
index eec01661e94..0b022d0951b 100644
--- a/core/Command/FilesMetadata/Get.php
+++ b/core/Command/FilesMetadata/Get.php
@@ -31,35 +31,35 @@ class Get extends Command {
protected function configure(): void {
$this->setName('metadata:get')
- ->setDescription('get stored metadata about a file, by its id')
- ->addArgument(
- 'fileId',
- InputArgument::REQUIRED,
- 'id of the file document'
- )
- ->addArgument(
- 'userId',
- InputArgument::OPTIONAL,
- 'file owner'
- )
- ->addOption(
- 'as-array',
- '',
- InputOption::VALUE_NONE,
- 'display metadata as a simple key=>value array'
- )
- ->addOption(
- 'refresh',
- '',
- InputOption::VALUE_NONE,
- 'refresh metadata'
- )
- ->addOption(
- 'reset',
- '',
- InputOption::VALUE_NONE,
- 'refresh metadata from scratch'
- );
+ ->setDescription('get stored metadata about a file, by its id')
+ ->addArgument(
+ 'fileId',
+ InputArgument::REQUIRED,
+ 'id of the file document'
+ )
+ ->addArgument(
+ 'userId',
+ InputArgument::OPTIONAL,
+ 'file owner'
+ )
+ ->addOption(
+ 'as-array',
+ '',
+ InputOption::VALUE_NONE,
+ 'display metadata as a simple key=>value array'
+ )
+ ->addOption(
+ 'refresh',
+ '',
+ InputOption::VALUE_NONE,
+ 'refresh metadata'
+ )
+ ->addOption(
+ 'reset',
+ '',
+ InputOption::VALUE_NONE,
+ 'refresh metadata from scratch'
+ );
}
/**