We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ed580a commit 037747cCopy full SHA for 037747c
src/Views/Filters/MultiSelectDropdownFilter.php
@@ -22,7 +22,6 @@ public function getOptions(): array
22
return $this->options;
23
}
24
25
-
26
public function setFirstOption(string $firstOption): MultiSelectDropdownFilter
27
{
28
$this->firstOption = $firstOption;
@@ -81,14 +80,12 @@ public function getFilterPillValue($value): ?string
81
80
82
public function isEmpty($value): bool
83
84
- if (!is_array($value))
85
- {
+ if (! is_array($value)) {
86
return true;
87
- }
88
- else if (in_array("all", $value))
89
+ } elseif (in_array("all", $value)) {
90
91
+
92
return false;
93
94
0 commit comments