Skip to content

Commit

Permalink
Code style fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-cintra committed Oct 18, 2024
1 parent 04cd7f8 commit acbe9e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stubs/modules/Support/Traits/Searchable.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public function scopeSearch(Builder $query, ?string $searchColumn, ?string $sear
if (empty($searchColumn) || empty($searchTerm)) {
return;
}

$searchTerm = preg_replace('/[^A-Za-z0-9 ]/', '', $searchTerm);

$columns = array_map('trim', explode(',', $searchColumn));
Expand Down

0 comments on commit acbe9e8

Please sign in to comment.