8000 [Console] Readd missing php-doc parameter for constructor · devloop42/symfony@09e7d6f · GitHub
[go: up one dir, main page]

Skip to content

Commit 09e7d6f

Browse files
brosenbergerderrabus
authored andcommitted
[Console] Readd missing php-doc parameter for constructor
1 parent 1ab8a0e commit 09e7d6f

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/Symfony/Component/Console/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)
0