Completed
Push — master ( 47f050...014b6a )
by Patrick
39s
created
Data/FilterClause.php 1 patch
Switch Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -265,18 +265,18 @@
 block discarded – undo
265 265
         }
266 266
         switch($this->op)
267 267
         {
268
-        case '!=':
269
-            return $value != $this->var2;
270
-        case '=':
271
-            return $value == $this->var2;
272
-        case '<':
273
-            return $value < $this->var2;
274
-        case '<=':
275
-            return $value <= $this->var2;
276
-        case '>':
277
-            return $value > $this->var2;
278
-        case '>=':
279
-            return $value >= $this->var2;
268
+            case '!=':
269
+                return $value != $this->var2;
270
+            case '=':
271
+                return $value == $this->var2;
272
+            case '<':
273
+                return $value < $this->var2;
274
+            case '<=':
275
+                return $value <= $this->var2;
276
+            case '>':
277
+                return $value > $this->var2;
278
+            case '>=':
279
+                return $value >= $this->var2;
280 280
         }
281 281
     }
282 282
 }
Please login to merge, or discard this patch.