Skip to content

Commit b4d26d4

Browse files
rubenvanasscheactions-user
authored andcommitted
Fix styling
1 parent 7062032 commit b4d26d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/TestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ protected function skipIfPHPLowerThen(string $version)
143143
[$currentMajor, $currentMinor] = explode('.', phpversion());
144144
[$major, $minor] = explode('.', $version);
145145

146-
if($currentMajor < $major || ($currentMajor === $major && $currentMinor < $minor)){
146+
if ($currentMajor < $major || ($currentMajor === $major && $currentMinor < $minor)) {
147147
$this->markTestSkipped("PHP version {$version} required for this test");
148148
}
149149
}

0 commit comments

Comments
 (0)