Skip to content

Commit

Permalink
Fix CS/WS issues
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Jan 31, 2024
1 parent 0b06d36 commit baddf72
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/TextUI/Command.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
use function assert;
use function class_exists;
use function copy;
use function explode;
use function extension_loaded;
use function fgets;
use function file_get_contents;
Expand Down Expand Up @@ -614,7 +615,7 @@ protected function handleVersionCheck(): void
printf(
'The latest version compatible with PHPUnit %s is PHPUnit %s.' . PHP_EOL,
Version::id(),
$latestCompatibleVersion
$latestCompatibleVersion,
);
}

Expand Down

0 comments on commit baddf72

Please sign in to comment.