Passed
Pull Request — master (#2)
by Zing
04:19
created
src/Filters/FiltersExact.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
 
27 27
     protected function isRelationProperty(Builder $query, string $property): bool
28 28
     {
29
-        if (! Str::contains($property, '.')) {
29
+        if (!Str::contains($property, '.')) {
30 30
             return false;
31 31
         }
32 32
 
Please login to merge, or discard this patch.
src/Filter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -205,9 +205,9 @@
 block discarded – undo
205 205
         if (is_array($value)) {
206 206
             $remainingProperties = array_diff($value, $this->getIgnored()->toArray());
207 207
 
208
-            return ! empty($remainingProperties) ? $remainingProperties : null;
208
+            return !empty($remainingProperties) ? $remainingProperties : null;
209 209
         }
210 210
 
211
-        return ! $this->getIgnored()->contains($value) ? $value : null;
211
+        return !$this->getIgnored()->contains($value) ? $value : null;
212 212
     }
213 213
 }
Please login to merge, or discard this patch.