Skip to content

Commit d5a366f

Browse files
committed
minor symfony#28448 [Console] Fix input values allowed types (chalasr)
This PR was merged into the 2.8 branch. Discussion ---------- [Console] Fix input values allowed types | Q | A | ------------- | --- | Branch? | 2.8 | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | n/a | License | MIT | Doc PR | n/a Continuation of symfony#28374 Commits ------- 0c16cd9 [Console] Fix input values allowed types
2 parents 86a5d92 + 0c16cd9 commit d5a366f

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/Symfony/Component/Console/Input/InputArgument.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ public function isArray()
8686
/**
8787
* Sets the default value.
8888
*
89-
* @param mixed $default The default value
89+
* @param string|string[] $default The default value
9090
*
9191
* @throws LogicException When incorrect default value is given
9292
*/
@@ -110,7 +110,7 @@ public function setDefault($default = null)
110110
/**
111111
* Returns the default value.
112112
*
113-
* @return mixed The default value
113+
* @return string|string[] The default value
114114
*/
115115
public function getDefault()
116116
{

src/Symfony/Component/Console/Input/InputInterface.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ public function getArguments();
8383
*
8484
* @param string $name The argument name
8585
*
86-
* @return mixed The argument value
86+
* @return string|string[] The argument value
8787
*
8888
* @throws InvalidArgumentException When argument given doesn't exist
8989
*/
@@ -120,7 +120,7 @@ public function getOptions();
120120
*
121121
* @param string $name The option name
122122
*
123-
* @return mixed The option value
123+
* @return string|string[]|bool The option value
124124
*
125125
* @throws InvalidArgumentException When option given doesn't exist
126126
*/

src/Symfony/Component/Console/Input/InputOption.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ public function isArray()
149149
/**
150150
* Sets the default value.
151151
*
152-
* @param mixed $default The default value
152+
* @param string|string[]|bool $default The default value
153153
*
154154
* @throws LogicException When incorrect default value is given
155155
*/
@@ -173,7 +173,7 @@ public function setDefault($default = null)
173173
/**
174174
* Returns the default value.
175175
*
176-
* @return mixed The default value
176+
* @return string|string[]|bool The default value
177177
*/
178178
public function getDefault()
179179
{

0 commit comments

Comments
 (0)