Skip to content

Commit

Permalink
Error "Ignored error pattern is expected to occur N times but occured…
Browse files Browse the repository at this point in the history
… M times" can no longer be ignored
  • Loading branch information
ondrejmirtes committed Mar 2, 2020
1 parent 1100202 commit 304d472
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Analyser/IgnoredErrorHelperResult.php
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ public function process(array $errors, bool $onlyFiles, bool $reachedInternalErr
$unmatchedIgnoredError['count'] === 1 ? 'time' : 'times',
$unmatchedIgnoredError['realCount'],
$unmatchedIgnoredError['realCount'] === 1 ? 'time' : 'times'
), $unmatchedIgnoredError['file'], $unmatchedIgnoredError['line']);
), $unmatchedIgnoredError['file'], $unmatchedIgnoredError['line'], false);
}

$errors = array_merge($errors, $addErrors);
Expand Down

0 comments on commit 304d472

Please sign in to comment.