Skip to content

Commit

Permalink
Fixes types
Browse files Browse the repository at this point in the history
  • Loading branch information
nunomaduro committed Jun 27, 2024
1 parent 9db7e52 commit 685f429
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Adapters/Laravel/Commands/TestCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ protected function commonArguments()

if ($this->option('ansi')) {
$arguments[] = '--colors=always';
} elseif ($this->option('no-ansi')) { // @phpstan-ignore-line
} elseif ($this->option('no-ansi')) {
$arguments[] = '--colors=never';
} elseif ((new Console)->hasColorSupport()) {
$arguments[] = '--colors=always';
Expand Down

0 comments on commit 685f429

Please sign in to comment.