mirror of
https://github.com/standardebooks/web.git
synced 2025-07-12 01:22:23 -04:00
Update composer packages
This commit is contained in:
parent
58cc098058
commit
415aed8b31
59 changed files with 3352 additions and 2347 deletions
7
vendor/symfony/console/Application.php
vendored
7
vendor/symfony/console/Application.php
vendored
|
@ -199,6 +199,13 @@ class Application
|
|||
return 0;
|
||||
}
|
||||
|
||||
try {
|
||||
// Makes ArgvInput::getFirstArgument() able to distinguish an option from an argument.
|
||||
$input->bind($this->getDefinition());
|
||||
} catch (ExceptionInterface $e) {
|
||||
// Errors must be ignored, full binding/validation happens later when the command is known.
|
||||
}
|
||||
|
||||
$name = $this->getCommandName($input);
|
||||
if (true === $input->hasParameterOption(['--help', '-h'], true)) {
|
||||
if (!$name) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue