8000 [BUGFIX] Remove default value for required arguments · gilbertsoft/TYPO3-Console@9ce9f74 · GitHub
[go: up one dir, main page]

Skip to content

Commit 9ce9f74

Browse files
committed
[BUGFIX] Remove default value for required arguments
With the change symfony/symfony#46264 it's not longer possible to provide a default value for required arguments and the TYPO3 Console stops working with Symfony 6.0.9, 5.4.9 and 4.4.42.
1 parent b3a4823 commit 9ce9f74

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Classes/Console/Command/Upgrade/UpgradeRunCommand.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,7 @@ protected function configure()
6767
$this->addArgument(
6868
'wizardIdentifiers',
6969
InputArgument::REQUIRED | InputArgument::IS_ARRAY,
70-
'One or more wizard identifiers to run',
71-
[]
70+
'One or more wizard identifiers to run'
7271
);
7372
$this->addOption(
7473
'confirm',

0 commit comments

Comments
 (0)
0