Passed
Push — master ( f12509...e8417e )
by Zing
04:39
created
src/Concerns/WithTypedFilter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.