Passed
Pull Request — master (#135)
by Zing
05:08
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
 
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
                 throw ParameterException::unsupportedFilterWithDefaultValueForTypedFilter();
39 39
             }
40 40
 
41
-            if (! $filter->isForProperty($this->request->input($type))) {
41
+            if (!$filter->isForProperty($this->request->input($type))) {
42 42
                 continue;
43 43
             }
44 44
 
Please login to merge, or discard this patch.