N°8910 - Upgrade Symfony packages

This commit is contained in:
Benjamin DALSASS
2026-02-19 10:00:56 +01:00
parent 0f11fd9919
commit 5d3ad83946
224 changed files with 4758 additions and 1778 deletions

View File

@@ -176,7 +176,7 @@ class ArgvInput extends Input
} else {
$all = $this->definition->getArguments();
$symfonyCommandName = null;
if (($inputArgument = $all[$key = array_key_first($all)] ?? null) && 'command' === $inputArgument->getName()) {
if (($inputArgument = $all[$key = array_key_first($all) ?? ''] ?? null) && 'command' === $inputArgument->getName()) {
$symfonyCommandName = $this->arguments['command'] ?? null;
unset($all[$key]);
}