Skip to content

Commit 5f303eb

Browse files
another fix
1 parent 07ca36f commit 5f303eb

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/CLI/TargetPhpVersion.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
class TargetPhpVersion
1010
{
1111
public const VALID_PHP_VERSIONS = [
12-
'7.1',
1312
'7.2',
1413
'7.3',
1514
'7.4',
@@ -26,7 +25,7 @@ private function __construct(string $version)
2625
{
2726
$versionNumbers = explode('.', $version);
2827
if (3 <= \count($versionNumbers)) {
29-
$version = $versionNumbers[0].'.'.$versionNumbers[1];
28+
$version = $versionNumbers[0] . '.' . $versionNumbers[1];
3029
}
3130

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

0 commit comments

Comments
 (0)