Skip to content

Commit d3e1852

Browse files
[6.0] cs fixes
1 parent 23208ef commit d3e1852

File tree

4 files changed

+1
-7
lines changed

4 files changed

+1
-7
lines changed

Input/InputArgument.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,6 @@ public function setDefault(string|bool|int|float|array $default = null)
105105

106106
/**
107107
* Returns the default value.
108-
*
109-
* @return string|bool|int|float|array|null
110108
*/
111109
public function getDefault(): string|bool|int|float|array|null
112110
{

Input/InputOption.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -187,8 +187,6 @@ public function setDefault(string|bool|int|float|array $default = null)
187187

188188
/**
189189
* Returns the default value.
190-
*
191-
* @return string|bool|int|float|array|null
192190
*/
193191
public function getDefault(): string|bool|int|float|array|null
194192
{

Question/Question.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,6 @@ public function getQuestion(): string
5252

5353
/**
5454
* Returns the default answer.
55-
*
56-
* @return string|bool|int|float|null
5755
*/
5856
public function getDefault(): string|bool|int|float|null
5957
{

Style/SymfonyStyle.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public function __construct(InputInterface $input, OutputInterface $output)
5959
/**
6060
* Formats a message as a block of text.
6161
*/
62-
public function block(string|array $messages, ?string $type = null, string $style = null, string $prefix = ' ', bool $padding = false, bool $escape = true)
62+
public function block(string|array $messages, string $type = null, string $style = null, string $prefix = ' ', bool $padding = false, bool $escape = true)
6363
{
6464
$messages = \is_array($messages) ? array_values($messages) : [$messages];
6565

0 commit comments

Comments
 (0)