Skip to content

Commit 9afd18f

Browse files
committed
CS Fix
1 parent a9f1f5d commit 9afd18f

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/AllowedFilter.php

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -153,10 +153,7 @@ public function hasDefault(): bool
153153
protected function resolveValueForFiltering($value)
154154
{
155155
if (is_array($value)) {
156-
$remainingProperties = array_map(
157-
[$this, 'resolveValueForFiltering'],
158-
$value
159-
);
156+
$remainingProperties = array_map([$this, 'resolveValueForFiltering'], $value);
160157

161158
return ! empty($remainingProperties) ? $remainingProperties : null;
162159
}

0 commit comments

Comments
 (0)