Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 9ce9f74

Browse filesBrowse 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
Copy full SHA for 9ce9f74

File tree

Expand file treeCollapse file tree

1 file changed

+1
-2
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+1
-2
lines changed

‎Classes/Console/Command/Upgrade/UpgradeRunCommand.php

Copy file name to clipboardExpand all lines: Classes/Console/Command/Upgrade/UpgradeRunCommand.php
+1-2Lines 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)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.