Test Failed
Pull Request — master (#145)
by Zing
10:50 queued 04:24
created
src/Filters/BetweenFilter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
      */
17 17
     protected function withPropertyConstraint($query, $value, $property): Builder
18 18
     {
19
-        if (! is_array($value) || count($value) !== 2) {
19
+        if (!is_array($value) || count($value) !== 2) {
20 20
             throw ParameterException::tooFewElementsForBetweenExpression();
21 21
         }
22 22
 
Please login to merge, or discard this patch.
src/Filters/ExactFilter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
      */
69 69
     protected function isRelationProperty($query, string $property): bool
70 70
     {
71
-        if (! Str::contains($property, '.')) {
71
+        if (!Str::contains($property, '.')) {
72 72
             return false;
73 73
         }
74 74
 
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
             return false;
77 77
         }
78 78
 
79
-        return ! Str::startsWith($property, $query->getModel()->getTable() . '.');
79
+        return !Str::startsWith($property, $query->getModel()->getTable() . '.');
80 80
     }
81 81
 
82 82
     /**
Please login to merge, or discard this patch.