Skip to content

Commit bcc1e03

Browse files
csfix
1 parent 5e62e1e commit bcc1e03

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/CLI/TargetPhpVersion.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ private function __construct(string $version)
2424
{
2525
$versionNumbers = explode('.', $version);
2626
if (3 <= \count($versionNumbers)) {
27-
$version = $versionNumbers[0] . '.' . $versionNumbers[1];
27+
$version = $versionNumbers[0].'.'.$versionNumbers[1];
2828
}
2929

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

0 commit comments

Comments
 (0)