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

[Console] Revert "bug #41952 fix handling positional arguments" #41966

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jul 4, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Revert "minor #41949 [Console] fix type annotations on InputInterface…
… (nicolas-grekas)"

This reverts commit ed09dc1, reversing
changes made to 7e78fb1.
  • Loading branch information
nicolas-grekas committed Jul 4, 2021
commit 9928be05fee46a664bacf3beaa7afed9eba779a2
6 changes: 3 additions & 3 deletions 6 src/Symfony/Component/Console/Input/InputInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public function getArguments();
/**
* Returns the argument value for a given argument name.
*
* @param string|int $name The InputArgument name or position
* @param string $name The argument name
*
* @return mixed
*
Expand All @@ -94,8 +94,8 @@ public function getArgument($name);
/**
* Sets an argument value by name.
*
* @param string|int $name The InputArgument name or position
* @param mixed $value The argument value
* @param string $name The argument name
* @param mixed $value The argument value
*
* @throws InvalidArgumentException When argument given doesn't exist
*/
Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.