@@ -20,7 +20,7 @@ |
||
20 | 20 | $grid = new Grid($this->gridHelper); |
21 | 21 | $grid->addColumn('name', [ |
22 | 22 | 'title' => 'First name', |
23 | - 'clickable' => function () { |
|
23 | + 'clickable' => function() { |
|
24 | 24 | return ''; |
25 | 25 | }, |
26 | 26 | 'decorators' => [ |
@@ -45,7 +45,7 @@ |
||
45 | 45 | { |
46 | 46 | return $this |
47 | 47 | ->source |
48 | - ->when($order->getColumn(), function (Builder $builder) use ($order) { |
|
48 | + ->when($order->getColumn(), function(Builder $builder) use ($order) { |
|
49 | 49 | return $builder->orderBy($order->getColumn(), $order->getDirection()); |
50 | 50 | }) |
51 | 51 | ->forPage($currentPage, $perPage) |