From 9928be05fee46a664bacf3beaa7afed9eba779a2 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Sun, 4 Jul 2021 11:02:18 +0200 Subject: [PATCH] Revert "minor #41949 [Console] fix type annotations on InputInterface (nicolas-grekas)" This reverts commit ed09dc138e2be63303eaf6ddacabdb1ad6e2965e, reversing changes made to 7e78fb1197dfc6626ff2a1490fa2865fba4ee313. --- src/Symfony/Component/Console/Input/InputInterface.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Symfony/Component/Console/Input/InputInterface.php b/src/Symfony/Component/Console/Input/InputInterface.php index b96a0c6278..4ecab0f4fb 100644 --- a/src/Symfony/Component/Console/Input/InputInterface.php +++ b/src/Symfony/Component/Console/Input/InputInterface.php @@ -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 */