Skip to content

Commit

Permalink
refactor: add : void
Browse files Browse the repository at this point in the history
  • Loading branch information
kenjis committed Jun 30, 2024
1 parent dc9adb1 commit e7f7ec5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system/Filters/Filters.php
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,7 @@ private function getCleanName(string $filter): array
[$alias, $arguments] = explode(':', $filter);

$arguments = explode(',', $arguments);
array_walk($arguments, static function (&$item) {
array_walk($arguments, static function (&$item): void {
$item = trim($item);
});

Expand Down

0 comments on commit e7f7ec5

Please sign in to comment.