From 875ffc84207b3683888b8a89351f32bc26dc7b94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Pineau?= Date: Wed, 24 May 2023 17:11:52 +0200 Subject: [PATCH] [Console] Fix PHP Doc of InputArgument --- Input/InputArgument.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Input/InputArgument.php b/Input/InputArgument.php index ecfcdad58..8a64f7ac8 100644 --- a/Input/InputArgument.php +++ b/Input/InputArgument.php @@ -32,7 +32,7 @@ class InputArgument /** * @param string $name The argument name - * @param int|null $mode The argument mode: self::REQUIRED or self::OPTIONAL + * @param int|null $mode The argument mode: a bit mask of self::REQUIRED, self::OPTIONAL and self::IS_ARRAY * @param string $description A description text * @param string|bool|int|float|array|null $default The default value (for self::OPTIONAL mode only) *