We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | |
33 | 33 | public function testItCanAddAClauseToTheQueryUsingAClosure() |
34 | 34 | { |
35 | - $closure = function ($query) { |
|
35 | + $closure = function($query) { |
|
36 | 36 | $query->where('id', 1); |
37 | 37 | }; |
38 | 38 | |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | |
52 | 52 | public function testItCanAddABaseClauseToTheQueryUsingAClosure() |
53 | 53 | { |
54 | - $closure = function ($query) { |
|
54 | + $closure = function($query) { |
|
55 | 55 | $query->where('id', 1); |
56 | 56 | }; |
57 | 57 | |
@@ -115,7 +115,7 @@ discard block |
||
115 | 115 | $this->crudPanel->addColumn([ |
116 | 116 | 'name' => 'name', |
117 | 117 | 'type' => 'text', |
118 | - 'orderLogic' => function ($query, $column, $direction) { |
|
118 | + 'orderLogic' => function($query, $column, $direction) { |
|
119 | 119 | $query->orderBy('name', $direction); |
120 | 120 | }, |
121 | 121 | ]); |