From 16210a355ef3306ea9383c176c604f6f8864fd0c Mon Sep 17 00:00:00 2001 From: Julien Veyssier Date: Fri, 19 Jan 2024 14:25:24 +0100 Subject: [PATCH] remove 'output' command option that is already set in OC\Core\Command\base Signed-off-by: Julien Veyssier --- lib/Command/UpsertProvider.php | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/lib/Command/UpsertProvider.php b/lib/Command/UpsertProvider.php index a62da8c3..42a6bd34 100644 --- a/lib/Command/UpsertProvider.php +++ b/lib/Command/UpsertProvider.php @@ -90,14 +90,7 @@ protected function configure() { ->addOption('mapping-locality', null, InputOption::VALUE_OPTIONAL, 'Attribute mapping of the locality') ->addOption('mapping-region', null, InputOption::VALUE_OPTIONAL, 'Attribute mapping of the region') ->addOption('mapping-country', null, InputOption::VALUE_OPTIONAL, 'Attribute mapping of the country') - ->addOption('mapping-groups', null, InputOption::VALUE_OPTIONAL, 'Attribute mapping of the groups') - ->addOption( - 'output', - null, - InputOption::VALUE_OPTIONAL, - 'Output format (table, json or json_pretty)', - 'table' - ); + ->addOption('mapping-groups', null, InputOption::VALUE_OPTIONAL, 'Attribute mapping of the groups'); parent::configure(); }