Skip to content

Commit

Permalink
Fixed PHP7 precedence
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasvargiu committed Sep 8, 2017
1 parent 4f90722 commit 3d0ae75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PAGI/Client/Impl/MockedClientImpl.php
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ private function assertCall($methodName, array $arguments)
$count = count($args);
for ($i = 0; $i < $count; $i++) {
if (!isset($arguments[$i])) {
throw new MockedException("Missing argument number " . $i + 1);
throw new MockedException("Missing argument number " . ($i + 1));
}
$arg = $arguments[$i];
if ($arg !== $args[$i]) {
Expand Down

0 comments on commit 3d0ae75

Please sign in to comment.