Skip to content

Commit 89fb455

Browse files
rappasoftactions-user
authored andcommitted
Fix styling
1 parent cf05744 commit 89fb455

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Traits/WithFilters.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,7 @@ public function checkFilters(): void
124124
// If the filter is multiselect, we'll initialize it as an array.
125125
if ($filter->isMultiSelect()) {
126126
$this->filters[$key] = [];
127+
127128
continue;
128129
}
129130

@@ -174,7 +175,7 @@ public function cleanFilters(): void
174175
// Handle 'multiselect' filters
175176
if ($filterDefinitions[$filterName]->isMultiSelect() && is_array($filterValue)) {
176177
foreach ($filterValue as $selectedValue) {
177-
if (!in_array($selectedValue, $this->getFilterOptions($filterName))) {
178+
if (! in_array($selectedValue, $this->getFilterOptions($filterName))) {
178179
return false;
179180
}
180181
}

0 commit comments

Comments
 (0)