Passed
Pull Request — master (#135)
by Zing
05:22
created
src/Concerns/WithTypedFilter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,11 +14,11 @@
 block discarded – undo
14 14
      */
15 15
     public function enableTypedFilter(string $type, string $value, array $filters): self
16 16
     {
17
-        if (! $this->request->has($type)) {
17
+        if (!$this->request->has($type)) {
18 18
             return $this;
19 19
         }
20 20
         foreach ($filters as $filter) {
21
-            if (! $filter instanceof Filter) {
21
+            if (!$filter instanceof Filter) {
22 22
                 $filter = Filter::exact($filter);
23 23
             }
24 24
             if ($filter->getDefault() !== null) {
Please login to merge, or discard this patch.