@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | */ |
17 | 17 | public function enableTypedFilter(string $type, string $value, array $filters): self |
18 | 18 | { |
19 | - if (! $this->request->has($type)) { |
|
19 | + if (!$this->request->has($type)) { |
|
20 | 20 | return $this; |
21 | 21 | } |
22 | 22 | |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | return $filter->isForProperty($property); |
32 | 32 | }) |
33 | 33 | ->first(); |
34 | - if (! $filter instanceof Filter) { |
|
34 | + if (!$filter instanceof Filter) { |
|
35 | 35 | return $this; |
36 | 36 | } |
37 | 37 |