Skip to content

Commit

Permalink
[Console] Readd missing php-doc parameter for constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
brosenberger authored and derrabus committed Jul 27, 2021
1 parent e523c86 commit 8baf0bb
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions Input/InputOption.php
Expand Up @@ -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
*/
Expand Down

0 comments on commit 8baf0bb

Please sign in to comment.