Passed
Push — master ( 214063...0a943e )
by Zing
01:46 queued 11s
created
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.
src/QueryBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
      *
42 42
      * @deprecated use fromBuilder instead
43 43
      */
44
-    public static function for($baseQuery, Request $request)
44
+    public static function for ($baseQuery, Request $request)
45 45
     {
46 46
         return self::fromBuilder($baseQuery, $request);
47 47
     }
Please login to merge, or discard this patch.