Skip to content

Commit

Permalink
style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
fain182 committed Jan 15, 2024
1 parent 0deda46 commit e8e41bc
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 @@ -25,7 +25,7 @@ class TargetPhpVersion
private function __construct(string $version)
{
$versionNumbers = explode('.', $version);
if (count($versionNumbers) == 3) {
if (3 == \count($versionNumbers)) {
$version = $versionNumbers[0].'.'.$versionNumbers[1];
}

Expand Down

0 comments on commit e8e41bc

Please sign in to comment.