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

View File

@ -83,7 +83,7 @@ interface InputInterface
/** /**
* Returns the argument value for a given argument name. * 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 * @return mixed
* *
@ -94,7 +94,7 @@ interface InputInterface
/** /**
* Sets an argument value by name. * Sets an argument value by name.
* *
* @param string|int $name The InputArgument name or position * @param string $name The argument name
* @param mixed $value The argument value * @param mixed $value The argument value
* *
* @throws InvalidArgumentException When argument given doesn't exist * @throws InvalidArgumentException When argument given doesn't exist