Skip to content

Commit

Permalink
csfix
Browse files Browse the repository at this point in the history
  • Loading branch information
micheleorselli committed Feb 12, 2025
1 parent 5e62e1e commit bcc1e03
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 @@ -24,7 +24,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 bcc1e03

Please sign in to comment.