Skip to content

Commit

Permalink
Merge pull request #9013 from kenjis/refactor-Filters
Browse files Browse the repository at this point in the history
[4.6] refactor: add `: void`
  • Loading branch information
kenjis authored Jun 30, 2024
2 parents dc9adb1 + e7f7ec5 commit 1bffa3c
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 1bffa3c

Please sign in to comment.