Skip to content

Commit ffc2722

Browse files
committed
Merge branch '4.4' into 5.2
* 4.4: [Console] Readd missing php-doc parameter for constructor Remove polyfills from Yaml and Dotenv [HttpFoundation] Fixed type mismatch Bump Symfony version to 4.4.29 Update VERSION for 4.4.28 Update CHANGELOG for 4.4.28
2 parents eb07d40 + 8baf0bb commit ffc2722

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

Input/InputOption.php

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,11 @@ class InputOption
4848
private $description;
4949

5050
/**
51-
* @param string|array|null $shortcut The shortcuts, can be null, a string of shortcuts delimited by | or an array of shortcuts
52-
* @param int|null $mode The option mode: One of the VALUE_* constants
53-
* @param string|bool|int|float|array|null $default The default value (must be null for self::VALUE_NONE)
51+
* @param string $name The option name
52+
* @param string|array|null $shortcut The shortcuts, can be null, a string of shortcuts delimited by | or an array of shortcuts
53+
* @param int|null $mode The option mode: One of the VALUE_* constants
54+
* @param string $description A description text
55+
* @param string|bool|int|float|array|null $default The default value (must be null for self::VALUE_NONE)
5456
*
5557
* @throws InvalidArgumentException If option mode is invalid or incompatible
5658
*/

0 commit comments

Comments
 (0)