Revert "minor #41949 [Console] fix type annotations on InputInterface (nicolas-grekas)"

This reverts commit ed09dc138e, reversing
changes made to 7e78fb1197.
This commit is contained in:
Nicolas Grekas 2021-07-04 11:02:18 +02:00
parent 8fc58aaa45
commit 9928be05fe
1 changed files with 3 additions and 3 deletions

View File

@ -83,7 +83,7 @@ interface InputInterface
/**
* 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
*
@ -94,8 +94,8 @@ interface InputInterface
/**
* 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
*/