Skip to content

Commit

Permalink
Minor PHP 7.2 compatibility fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelstolt committed Oct 16, 2017
1 parent 49d45dd commit 223466b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Helpers/Travis.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public function phpVersionsToRun($phpVersions, $setLintEnvironmentVariable = fal
$phpVersion = $this->str->toMinorVersion($phpVersions[$i]);
}

if (count($i) !== 0) {
if ($i >= 0) {
$runOn .= ' ';
}

Expand Down

0 comments on commit 223466b

Please sign in to comment.