We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -818,7 +818,7 @@ discard block |
||
818 | 818 | |
819 | 819 | public function testCreateBelongsToFake() |
820 | 820 | { |
821 | - $belongsToField = [ // select_grouped |
|
821 | + $belongsToField = [// select_grouped |
|
822 | 822 | 'label' => 'Select_grouped', |
823 | 823 | 'type' => 'select_grouped', //https://github.com/Laravel-Backpack/CRUD/issues/502 |
824 | 824 | 'name' => 'bang_relation_field', |
@@ -954,7 +954,7 @@ discard block |
||
954 | 954 | 'nickname' => 'i_have_has_one', |
955 | 955 | 'profile_picture' => 'ohh my picture 1.jpg', |
956 | 956 | 'article' => 1, |
957 | - 'addresses' => [ // HasOne is tested in other test function |
|
957 | + 'addresses' => [// HasOne is tested in other test function |
|
958 | 958 | [ |
959 | 959 | 'city' => 2, |
960 | 960 | 'street' => 'test', |
@@ -1707,23 +1707,23 @@ discard block |
||
1707 | 1707 | $this->crudPanel->addField([ |
1708 | 1708 | 'name' => 'name', |
1709 | 1709 | 'events' => [ |
1710 | - 'created' => function ($entry) { |
|
1710 | + 'created' => function($entry) { |
|
1711 | 1711 | }, |
1712 | - 'creating' => function ($entry) { |
|
1712 | + 'creating' => function($entry) { |
|
1713 | 1713 | $entry->email = '[email protected]'; |
1714 | 1714 | $entry->password = Hash::make('password'); |
1715 | 1715 | }, |
1716 | - 'saving' => function ($entry) { |
|
1716 | + 'saving' => function($entry) { |
|
1717 | 1717 | }, |
1718 | - 'saved' => function ($entry) { |
|
1718 | + 'saved' => function($entry) { |
|
1719 | 1719 | }, |
1720 | - 'updating' => function ($entry) { |
|
1720 | + 'updating' => function($entry) { |
|
1721 | 1721 | }, |
1722 | - 'updated' => function ($entry) { |
|
1722 | + 'updated' => function($entry) { |
|
1723 | 1723 | }, |
1724 | - 'deleting' => function ($entry) { |
|
1724 | + 'deleting' => function($entry) { |
|
1725 | 1725 | }, |
1726 | - 'deleted' => function ($entry) { |
|
1726 | + 'deleted' => function($entry) { |
|
1727 | 1727 | }, |
1728 | 1728 | ], |
1729 | 1729 | ]); |
@@ -22,9 +22,9 @@ discard block |
||
22 | 22 | */ |
23 | 23 | public function applySearchTerm($searchTerm) |
24 | 24 | { |
25 | - return $this->query->where(function ($query) use ($searchTerm) { |
|
25 | + return $this->query->where(function($query) use ($searchTerm) { |
|
26 | 26 | foreach ($this->columns() as $column) { |
27 | - if (! isset($column['type'])) { |
|
27 | + if (!isset($column['type'])) { |
|
28 | 28 | abort(400, 'Missing column type when trying to apply search term.'); |
29 | 29 | } |
30 | 30 | |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | |
85 | 85 | case 'select': |
86 | 86 | case 'select_multiple': |
87 | - $query->orWhereHas($column['entity'], function ($q) use ($column, $searchTerm, $searchOperator) { |
|
87 | + $query->orWhereHas($column['entity'], function($q) use ($column, $searchTerm, $searchOperator) { |
|
88 | 88 | $q->where($this->getColumnWithTableNamePrefixed($q, $column['attribute']), $searchOperator, '%'.$searchTerm.'%'); |
89 | 89 | }); |
90 | 90 | break; |
@@ -108,7 +108,7 @@ discard block |
||
108 | 108 | $column_direction = (strtolower((string) $order['dir']) == 'asc' ? 'ASC' : 'DESC'); |
109 | 109 | $column = $this->findColumnById($column_number); |
110 | 110 | |
111 | - if ($column['tableColumn'] && ! isset($column['orderLogic'])) { |
|
111 | + if ($column['tableColumn'] && !isset($column['orderLogic'])) { |
|
112 | 112 | if (method_exists($this->model, 'translationEnabled') && |
113 | 113 | $this->model->translationEnabled() && |
114 | 114 | $this->model->isTranslatableAttribute($column['name']) && |
@@ -135,12 +135,12 @@ discard block |
||
135 | 135 | $table = $this->model->getTable(); |
136 | 136 | $key = $this->model->getKeyName(); |
137 | 137 | |
138 | - $hasOrderByPrimaryKey = collect($orderBy)->some(function ($item) use ($key, $table) { |
|
138 | + $hasOrderByPrimaryKey = collect($orderBy)->some(function($item) use ($key, $table) { |
|
139 | 139 | return (isset($item['column']) && $item['column'] === $key) |
140 | 140 | || (isset($item['sql']) && str_contains($item['sql'], "$table.$key")); |
141 | 141 | }); |
142 | 142 | |
143 | - if (! $hasOrderByPrimaryKey) { |
|
143 | + if (!$hasOrderByPrimaryKey) { |
|
144 | 144 | $this->orderByWithPrefix($key, 'DESC'); |
145 | 145 | } |
146 | 146 | } |
@@ -319,13 +319,13 @@ discard block |
||
319 | 319 | if (isset($column['type'])) { |
320 | 320 | // create a list of paths to column blade views |
321 | 321 | // including the configured view_namespaces |
322 | - $columnPaths = array_map(function ($item) use ($column) { |
|
322 | + $columnPaths = array_map(function($item) use ($column) { |
|
323 | 323 | return $item.'.'.$column['type']; |
324 | 324 | }, ViewNamespaces::getFor('columns')); |
325 | 325 | |
326 | 326 | // but always fall back to the stock 'text' column |
327 | 327 | // if a view doesn't exist |
328 | - if (! in_array('crud::columns.text', $columnPaths)) { |
|
328 | + if (!in_array('crud::columns.text', $columnPaths)) { |
|
329 | 329 | $columnPaths[] = 'crud::columns.text'; |
330 | 330 | } |
331 | 331 | |
@@ -364,7 +364,7 @@ discard block |
||
364 | 364 | */ |
365 | 365 | private function renderCellView($view, $column, $entry, $rowNumber = false) |
366 | 366 | { |
367 | - if (! view()->exists($view)) { |
|
367 | + if (!view()->exists($view)) { |
|
368 | 368 | $view = 'crud::columns.text'; // fallback to text column |
369 | 369 | } |
370 | 370 |
@@ -90,7 +90,7 @@ discard block |
||
90 | 90 | $this->crudPanel->addColumn([ |
91 | 91 | 'name' => 'test', |
92 | 92 | 'type' => 'my_custom_type', |
93 | - 'searchLogic' => function ($query, $column, $searchTerm) { |
|
93 | + 'searchLogic' => function($query, $column, $searchTerm) { |
|
94 | 94 | $query->where($column['name'], 'like', "%{$searchTerm}%"); |
95 | 95 | }, |
96 | 96 | 'tableColumn' => true, |
@@ -225,7 +225,7 @@ discard block |
||
225 | 225 | 'name' => 'name', |
226 | 226 | 'type' => 'text', |
227 | 227 | 'tableColumn' => true, |
228 | - 'orderLogic' => function ($query, $column, $searchTerm) { |
|
228 | + 'orderLogic' => function($query, $column, $searchTerm) { |
|
229 | 229 | $query->orderBy('name', 'asc'); |
230 | 230 | }, |
231 | 231 | ]); |
@@ -244,7 +244,7 @@ discard block |
||
244 | 244 | 'name' => 'name', |
245 | 245 | 'type' => 'text', |
246 | 246 | 'tableColumn' => true, |
247 | - 'orderLogic' => function ($query, $column, $searchTerm) { |
|
247 | + 'orderLogic' => function($query, $column, $searchTerm) { |
|
248 | 248 | $query->orderBy('id', 'asc'); |
249 | 249 | }, |
250 | 250 | ]); |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | ]; |
61 | 61 | |
62 | 62 | foreach ($filesToPublish as $destination => $stub) { |
63 | - if (! is_string($destination)) { |
|
63 | + if (!is_string($destination)) { |
|
64 | 64 | $destination = $stub; |
65 | 65 | $stub = null; |
66 | 66 | } |
@@ -71,11 +71,11 @@ discard block |
||
71 | 71 | continue; |
72 | 72 | } |
73 | 73 | |
74 | - if (! File::isDirectory(dirname($destination))) { |
|
74 | + if (!File::isDirectory(dirname($destination))) { |
|
75 | 75 | File::makeDirectory(dirname($destination), 0755, true); |
76 | 76 | } |
77 | 77 | |
78 | - if (! $stub) { |
|
78 | + if (!$stub) { |
|
79 | 79 | File::copy(__DIR__.'/../../../public/'.basename($destination), $destination); |
80 | 80 | $this->info("File {$destination} published."); |
81 | 81 | continue; |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | $stub = str_replace('__APP_COLOR__', $appColor, $stub); |
88 | 88 | $stub = str_replace('__BACKPACK_PREFIX__', $backpackPrefix, $stub); |
89 | 89 | $stub = str_replace('__PATH_PREFIX__', $pathPrefix, $stub); |
90 | - if($pathPrefix!='/') |
|
90 | + if ($pathPrefix != '/') |
|
91 | 91 | $stub = str_replace('__PREPEND_SLASH__', '/', $stub); |
92 | 92 | else |
93 | 93 | $stub = str_replace('__PREPEND_SLASH__', '', $stub); |