From 8baf0bbcfddfde7d7225ae8e04705cfd1081cd7b Mon Sep 17 00:00:00 2001 From: Benjamin Rosenberger Date: Tue, 27 Jul 2021 09:13:26 +0200 Subject: [PATCH] [Console] Readd missing php-doc parameter for constructor --- Input/InputOption.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Input/InputOption.php b/Input/InputOption.php index c40e0da34..c7729db20 100644 --- a/Input/InputOption.php +++ b/Input/InputOption.php @@ -48,9 +48,11 @@ class InputOption private $description; /** - * @param string|array|null $shortcut The shortcuts, can be null, a string of shortcuts delimited by | or an array of shortcuts - * @param int|null $mode The option mode: One of the VALUE_* constants - * @param string|bool|int|float|array|null $default The default value (must be null for self::VALUE_NONE) + * @param string $name The option name + * @param string|array|null $shortcut The shortcuts, can be null, a string of shortcuts delimited by | or an array of shortcuts + * @param int|null $mode The option mode: One of the VALUE_* constants + * @param string $description A description text + * @param string|bool|int|float|array|null $default The default value (must be null for self::VALUE_NONE) * * @throws InvalidArgumentException If option mode is invalid or incompatible */