Skip to content

Commit

Permalink
Swap order of implode() args to fix deprecation warning on PHP 7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
rowanhill committed Jul 25, 2020
1 parent 8e61232 commit b1d38fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/WireMock/Integration/WireMockIntegrationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ protected static function runCmd($cmd)
$output = array_map(function ($line) {
return "\n$line";
}, $output);
echo implode($output, "\n");
echo implode("\n", $output);
assertThat($result, is(0));
}

Expand Down

0 comments on commit b1d38fa

Please sign in to comment.