10000 fix cs · symfony/symfony@d070125 · GitHub
[go: up one dir, main page]

Skip to content

Commit d070125

Browse files
committed
fix cs
1 parent a9ed6ca commit d070125

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,6 @@ public function getArguments(): array
8888
/**
8989
* Returns all the given arguments NOT merged with the default values.
9090
*
91-
* @param bool $strip Whether to return the raw parameters (false) or the values after the command name (true)
92-
*z
9391
* @return array<string|bool|int|float|array<string|bool|int|float|null>|null>
9492
*/
9593
public function getRawArguments(): array
@@ -223,7 +221,7 @@ public function unparse(array $optionNames = []): array
223221
$unparsedOptions[] = \is_array($unparsedOption) ? $unparsedOption : [$unparsedOption];
224222
}
225223

226-
return \array_merge(...$unparsedOptions);
224+
return array_merge(...$unparsedOptions);
227225
}
228226

229227
/**

src/Symfony/Component/Console/Tests/Input/ArgvInputTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -598,7 +598,8 @@ public static function provideGetRawTokensTrueTests(): iterable
598598
/**
599599
* @dataProvider unparseProvider
600600
*/
601-
public function testUnparse(?InputDefinition $inputDefinition, ArgvInput $input, ?array $parsedOptions, array $expected) {
601+
public function testUnparse(?InputDefinition $inputDefinition, ArgvInput $input, ?array $parsedOptions, array $expected)
602+
{
602603
if (null !== $inputDefinition) {
603604
$input->bind($inputDefinition);
604605
}

0 commit comments

Comments
 (0)
0