Skip to content

Commit

Permalink
phpstan fix
Browse files Browse the repository at this point in the history
  • Loading branch information
paveljanda committed Nov 13, 2019
1 parent 0d190f3 commit 7df4e91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DataSource/ArrayDataSource.php
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ protected function applyFilter($row, Filter $filter)
$row_value = strtolower(Strings::toAscii((string) $row[$column]));

foreach ($words as $word) {
if (strpos($row_value, strtolower(Strings::toAscii((string) $word))) !== false) {
if (strpos($row_value, strtolower(Strings::toAscii($word))) !== false) {
return $row;
}
}
Expand Down

0 comments on commit 7df4e91

Please sign in to comment.