Test Setup Failed
Push — master ( d9b8f8...8f3561 )
by Chauncey
02:00
created
src/Charcoal/Source/AbstractSource.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
     {
100 100
         foreach ($data as $key => $val) {
101 101
             $setter = $this->setter($key);
102
-            if (is_callable([ $this, $setter ])) {
102
+            if (is_callable([$this, $setter])) {
103 103
                 $this->{$setter}($val);
104 104
             } else {
105 105
                 $this->{$key} = $val;
@@ -293,7 +293,7 @@  discard block
 block discarded – undo
293 293
             }
294 294
 
295 295
             if ($filter instanceof FilterCollectionInterface) {
296
-                $filter->traverseFilters(function (FilterInterface $expr) {
296
+                $filter->traverseFilters(function(FilterInterface $expr) {
297 297
                     $this->parseFilterWithModel($expr);
298 298
                 });
299 299
             }
@@ -381,7 +381,7 @@  discard block
 block discarded – undo
381 381
             }
382 382
 
383 383
             if ($order instanceof OrderCollectionInterface) {
384
-                $order->traverseOrders(function (OrderInterface $expr) {
384
+                $order->traverseOrders(function(OrderInterface $expr) {
385 385
                     $this->parseOrderWithModel($expr);
386 386
                 });
387 387
             }
Please login to merge, or discard this patch.