Fix phpdocs

See https://github.com/phan/phan/issues/2025 for explaination
This commit is contained in:
mschop 2018-10-03 20:15:00 +02:00 committed by Fabien Potencier
parent 5d6473bd94
commit 7196e49f7e

View File

@ -363,10 +363,12 @@ class Command
/** /**
* Adds an argument. * Adds an argument.
* *
* @param string $name The argument name * @param string $name The argument name
* @param int $mode The argument mode: InputArgument::REQUIRED or InputArgument::OPTIONAL * @param int|null $mode The argument mode: self::REQUIRED or self::OPTIONAL
* @param string $description A description text * @param string $description A description text
* @param mixed $default The default value (for InputArgument::OPTIONAL mode only) * @param string|string[]|null $default The default value (for self::OPTIONAL mode only)
*
* @throws InvalidArgumentException When argument mode is not valid
* *
* @return $this * @return $this
*/ */
@ -380,11 +382,13 @@ class Command
/** /**
* Adds an option. * Adds an option.
* *
* @param string $name The option name * @param string $name The option name
* @param string $shortcut The shortcut (can be null) * @param string|array $shortcut The shortcuts, can be null, a string of shortcuts delimited by | or an array of shortcuts
* @param int $mode The option mode: One of the InputOption::VALUE_* constants * @param int|null $mode The option mode: One of the VALUE_* constants
* @param string $description A description text * @param string $description A description text
* @param mixed $default The default value (must be null for InputOption::VALUE_NONE) * @param string|string[]|bool|null $default The default value (must be null for self::VALUE_NONE)
*
* @throws InvalidArgumentException If option mode is invalid or incompatible
* *
* @return $this * @return $this
*/ */