Skip to content

Commit 12b1042

Browse files
Merge branch '5.4' into 6.2
* 5.4: CS fix Fix test provider
2 parents 005c745 + a39ab00 commit 12b1042

File tree

3 files changed

+7
-9
lines changed

3 files changed

+7
-9
lines changed

Helper/ProgressIndicator.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,6 @@ public function advance()
123123

124124
/**
125125
* Finish the indicator with message.
126-
*
127-
* @param $message
128126
*/
129127
public function finish(string $message)
130128
{

Input/InputArgument.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ class InputArgument
3636
private string $description;
3737

3838
/**
39-
* @param string $name The argument name
40-
* @param int|null $mode The argument mode: self::REQUIRED or self::OPTIONAL
41-
* @param string $description A description text
42-
* @param string|bool|int|float|array|null $default The default value (for self::OPTIONAL mode only)
39+
* @param string $name The argument name
40+
* @param int|null $mode The argument mode: self::REQUIRED or self::OPTIONAL
41+
* @param string $description A description text
42+
* @param string|bool|int|float|array|null $default The default value (for self::OPTIONAL mode only)
4343
* @param array|\Closure(CompletionInput,CompletionSuggestions):list<string|Suggestion> $suggestedValues The values used for input completion
4444
*
4545
* @throws InvalidArgumentException When argument mode is not valid

Input/InputOption.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@ class InputOption
5858
private string $description;
5959

6060
/**
61-
* @param string|array|null $shortcut The shortcuts, can be null, a string of shortcuts delimited by | or an array of shortcuts
62-
* @param int|null $mode The option mode: One of the VALUE_* constants
63-
* @param string|bool|int|float|array|null $default The default value (must be null for self::VALUE_NONE)
61+
* @param string|array|null $shortcut The shortcuts, can be null, a string of shortcuts delimited by | or an array of shortcuts
62+
* @param int|null $mode The option mode: One of the VALUE_* constants
63+
* @param string|bool|int|float|array|null $default The default value (must be null for self::VALUE_NONE)
6464
* @param array|\Closure(CompletionInput,CompletionSuggestions):list<string|Suggestion> $suggestedValues The values used for input completion
6565
*
6666
* @throws InvalidArgumentException If option mode is invalid or incompatible

0 commit comments

Comments
 (0)