Skip to content

Commit

Permalink
bot: fix cs [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
kbond committed Jan 16, 2024
1 parent 0f4d865 commit dcf0b3c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/CommandResult.php
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public function dump(): self

\call_user_func(
\function_exists('dump') ? 'dump' : 'var_dump',
\implode("\n\n", \array_filter($output))
\implode("\n\n", \array_filter($output)),
);

return $this;
Expand Down
4 changes: 2 additions & 2 deletions src/TestCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ public function execute(?string $cli = null): CommandResult

$status = $this->doRun(
$input = new TestInput($cli, $this->inputs),
$output = new TestOutput($this->splitOutputStreams, $input)
$output = new TestOutput($this->splitOutputStreams, $input),
);

$this->application->setAutoExit($autoExit);
Expand All @@ -157,7 +157,7 @@ public function complete(string $cli): CompletionExpectation
{
return new CompletionExpectation(
$this,
Assert::that((new CommandCompletionTester($this->command))->complete(\explode(' ', $cli)))
Assert::that((new CommandCompletionTester($this->command))->complete(\explode(' ', $cli))),
);
}

Expand Down

0 comments on commit dcf0b3c

Please sign in to comment.