File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
src/Symfony/Component/Console/Input Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ public function isArray()
86
86
/**
87
87
* Sets the default value.
88
88
*
89
- * @param mixed $default The default value
89
+ * @param string|string[] $default The default value
90
90
*
91
91
* @throws LogicException When incorrect default value is given
92
92
*/
@@ -110,7 +110,7 @@ public function setDefault($default = null)
110
110
/**
111
111
* Returns the default value.
112
112
*
113
- * @return mixed The default value
113
+ * @return string|string[] The default value
114
114
*/
115
115
public function getDefault ()
116
116
{
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ public function getArguments();
83
83
*
84
84
* @param string $name The argument name
85
85
*
86
- * @return mixed The argument value
86
+ * @return string|string[] The argument value
87
87
*
88
88
* @throws InvalidArgumentException When argument given doesn't exist
89
89
*/
@@ -120,7 +120,7 @@ public function getOptions();
120
120
*
121
121
* @param string $name The option name
122
122
*
123
- * @return mixed The option value
123
+ * @return string|string[]|bool The option value
124
124
*
125
125
* @throws InvalidArgumentException When option given doesn't exist
126
126
*/
Original file line number Diff line number Diff line change @@ -149,7 +149,7 @@ public function isArray()
149
149
/**
150
150
* Sets the default value.
151
151
*
152
- * @param mixed $default The default value
152
+ * @param string|string[]|bool $default The default value
153
153
*
154
154
* @throws LogicException When incorrect default value is given
155
155
*/
@@ -173,7 +173,7 @@ public function setDefault($default = null)
173
173
/**
174
174
* Returns the default value.
175
175
*
176
- * @return mixed The default value
176
+ * @return string|string[]|bool The default value
177
177
*/
178
178
public function getDefault ()
179
179
{
You can’t perform that action at this time.
0 commit comments