Skip to content

Commit

Permalink
csfix
Browse files Browse the repository at this point in the history
  • Loading branch information
micheleorselli committed Feb 10, 2025
1 parent acf3a81 commit daad239
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CLI/TargetPhpVersion.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ private function __construct(string $version)
{
$versionNumbers = explode('.', $version);
if (3 <= \count($versionNumbers)) {
$version = $versionNumbers[0] . '.' . $versionNumbers[1];
$version = $versionNumbers[0].'.'.$versionNumbers[1];
}

if (!\in_array($version, self::VALID_PHP_VERSIONS)) {
Expand Down

0 comments on commit daad239

Please sign in to comment.