@@ -99,7 +99,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 | } |