Passed
Push — master ( 480514...e591b2 )
by Zing
03:48
created
src/Filters/FiltersExact.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
 
29 29
     protected function isRelationProperty(Builder $query, string $property): bool
30 30
     {
31
-        if (! Str::contains($property, '.')) {
31
+        if (!Str::contains($property, '.')) {
32 32
             return false;
33 33
         }
34 34
 
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
             return false;
37 37
         }
38 38
 
39
-        return ! Str::startsWith($property, $query->getModel()->getTable() . '.');
39
+        return !Str::startsWith($property, $query->getModel()->getTable() . '.');
40 40
     }
41 41
 
42 42
     protected function withRelationConstraint($query, $value, string $property)
Please login to merge, or discard this patch.