We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -29,20 +29,20 @@ |
||
29 | 29 | if (isset($fields[$k]['fake']) && $fields[$k]['fake'] == true) { |
30 | 30 | // add it to the request in its appropriate variable - the one defined, if defined |
31 | 31 | if (isset($fields[$k]['store_in'])) { |
32 | - if (! in_array($fields[$k]['store_in'], $fake_field_columns_to_encode, true)) { |
|
32 | + if (!in_array($fields[$k]['store_in'], $fake_field_columns_to_encode, true)) { |
|
33 | 33 | array_push($fake_field_columns_to_encode, $fields[$k]['store_in']); |
34 | 34 | } |
35 | 35 | } else { |
36 | 36 | //otherwise in the one defined in the $crud variable |
37 | 37 | |
38 | - if (! in_array('extras', $fake_field_columns_to_encode, true)) { |
|
38 | + if (!in_array('extras', $fake_field_columns_to_encode, true)) { |
|
39 | 39 | array_push($fake_field_columns_to_encode, 'extras'); |
40 | 40 | } |
41 | 41 | } |
42 | 42 | } |
43 | 43 | } |
44 | 44 | |
45 | - if (! count($fake_field_columns_to_encode)) { |
|
45 | + if (!count($fake_field_columns_to_encode)) { |
|
46 | 46 | return ['extras']; |
47 | 47 | } |
48 | 48 |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | // remove the fake field |
42 | 42 | array_pull($request, $fields[$k]['name']); |
43 | 43 | |
44 | - if (! in_array($fields[$k]['store_in'], $fake_field_columns_to_encode, true)) { |
|
44 | + if (!in_array($fields[$k]['store_in'], $fake_field_columns_to_encode, true)) { |
|
45 | 45 | array_push($fake_field_columns_to_encode, $fields[$k]['store_in']); |
46 | 46 | } |
47 | 47 | } else { |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | // remove the fake field |
53 | 53 | array_pull($request, $fields[$k]['name']); |
54 | 54 | |
55 | - if (! in_array('extras', $fake_field_columns_to_encode, true)) { |
|
55 | + if (!in_array('extras', $fake_field_columns_to_encode, true)) { |
|
56 | 56 | array_push($fake_field_columns_to_encode, 'extras'); |
57 | 57 | } |
58 | 58 | } |
@@ -46,14 +46,14 @@ |
||
46 | 46 | |
47 | 47 | public function removeButton($name) |
48 | 48 | { |
49 | - $this->buttons->reject(function ($button) { |
|
49 | + $this->buttons->reject(function($button) { |
|
50 | 50 | return $button->name == $name; |
51 | 51 | }); |
52 | 52 | } |
53 | 53 | |
54 | 54 | public function removeButtonFromStack($name, $stack) |
55 | 55 | { |
56 | - $this->buttons->reject(function ($button) { |
|
56 | + $this->buttons->reject(function($button) { |
|
57 | 57 | return $button->name == $name && $button->stack == $stack; |
58 | 58 | }); |
59 | 59 | } |
@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | { |
17 | 17 | $this->getDbColumnTypes(); |
18 | 18 | |
19 | - array_map(function ($field) { |
|
19 | + array_map(function($field) { |
|
20 | 20 | // $this->labels[$field] = $this->makeLabel($field); |
21 | 21 | |
22 | 22 | $new_field = [ |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | $this->create_fields[$field] = $new_field; |
31 | 31 | $this->update_fields[$field] = $new_field; |
32 | 32 | |
33 | - if (! in_array($field, $this->model->getHidden())) { |
|
33 | + if (!in_array($field, $this->model->getHidden())) { |
|
34 | 34 | $this->columns[$field] = [ |
35 | 35 | 'name' => $field, |
36 | 36 | 'label' => ucfirst($field), |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | */ |
64 | 64 | public function getFieldTypeFromDbColumnType($field) |
65 | 65 | { |
66 | - if (! array_key_exists($field, $this->db_column_types)) { |
|
66 | + if (!array_key_exists($field, $this->db_column_types)) { |
|
67 | 67 | return 'text'; |
68 | 68 | } |
69 | 69 | |
@@ -144,7 +144,7 @@ discard block |
||
144 | 144 | $columns = \Schema::getColumnListing($this->model->getTable()); |
145 | 145 | $fillable = $this->model->getFillable(); |
146 | 146 | |
147 | - if (! empty($fillable)) { |
|
147 | + if (!empty($fillable)) { |
|
148 | 148 | $columns = array_intersect($columns, $fillable); |
149 | 149 | } |
150 | 150 |
@@ -4,7 +4,7 @@ |
||
4 | 4 | <?php |
5 | 5 | // if the column has been cast to Carbon or Date (using attribute casting) |
6 | 6 | // get the value as a date string |
7 | - if (isset($field['value']) && ( $field['value'] instanceof \Carbon\Carbon || $field['value'] instanceof \Jenssegers\Date\Date )) |
|
7 | + if (isset($field['value']) && ($field['value'] instanceof \Carbon\Carbon || $field['value'] instanceof \Jenssegers\Date\Date)) |
|
8 | 8 | { |
9 | 9 | $field['value'] = $field['value']->toDateString(); |
10 | 10 | } |
@@ -4,7 +4,7 @@ |
||
4 | 4 | <?php |
5 | 5 | // if the column has been cast to Carbon or Date (using attribute casting) |
6 | 6 | // get the value as a date string |
7 | - if (isset($field['value']) && ( $field['value'] instanceof \Carbon\Carbon || $field['value'] instanceof \Jenssegers\Date\Date )) |
|
7 | + if (isset($field['value']) && ($field['value'] instanceof \Carbon\Carbon || $field['value'] instanceof \Jenssegers\Date\Date)) |
|
8 | 8 | { |
9 | 9 | $field['value'] = $field['value']->toDateString(); |
10 | 10 | } |
@@ -157,7 +157,7 @@ |
||
157 | 157 | */ |
158 | 158 | public function getCellView($column, $entry) |
159 | 159 | { |
160 | - if (! isset($column['type'])) { |
|
160 | + if (!isset($column['type'])) { |
|
161 | 161 | return \View::make('crud::columns.text')->with('crud', $this)->with('column', $column)->with('entry', $entry)->render(); |
162 | 162 | } else { |
163 | 163 | if (view()->exists('vendor.backpack.crud.columns.'.$column['type'])) { |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | $this->data['title'] = ucfirst($this->crud->entity_name_plural); |
38 | 38 | |
39 | 39 | // get all entries if AJAX is not enabled |
40 | - if (! $this->data['crud']->ajaxTable()) { |
|
40 | + if (!$this->data['crud']->ajaxTable()) { |
|
41 | 41 | $this->data['entries'] = $this->data['crud']->getEntries(); |
42 | 42 | } |
43 | 43 | |
@@ -190,7 +190,7 @@ discard block |
||
190 | 190 | { |
191 | 191 | $this->crud->hasAccessOrFail('reorder'); |
192 | 192 | |
193 | - if (! $this->crud->isReorderEnabled()) { |
|
193 | + if (!$this->crud->isReorderEnabled()) { |
|
194 | 194 | abort(403, 'Reorder is disabled.'); |
195 | 195 | } |
196 | 196 | |
@@ -259,7 +259,7 @@ discard block |
||
259 | 259 | $dataTable = new DataTable($this->crud->query, $columns); |
260 | 260 | |
261 | 261 | // make the datatable use the column types instead of just echoing the text |
262 | - $dataTable->setFormatRowFunction(function ($entry) { |
|
262 | + $dataTable->setFormatRowFunction(function($entry) { |
|
263 | 263 | // get the actual HTML for each row's cell |
264 | 264 | $row_items = $this->crud->getRowViews($entry, $this->crud); |
265 | 265 |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | */ |
71 | 71 | public function setModel($model_namespace) |
72 | 72 | { |
73 | - if (! class_exists($model_namespace)) { |
|
73 | + if (!class_exists($model_namespace)) { |
|
74 | 74 | throw new \Exception('This model does not exist.', 404); |
75 | 75 | } |
76 | 76 | |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | { |
113 | 113 | $complete_route = $route.'.index'; |
114 | 114 | |
115 | - if (! \Route::has($complete_route)) { |
|
115 | + if (!\Route::has($complete_route)) { |
|
116 | 116 | throw new \Exception('There are no routes for this route name.', 404); |
117 | 117 | } |
118 | 118 | |
@@ -162,7 +162,7 @@ discard block |
||
162 | 162 | */ |
163 | 163 | public function getFirstOfItsTypeInArray($type, $array) |
164 | 164 | { |
165 | - return array_first($array, function ($item) use ($type) { |
|
165 | + return array_first($array, function($item) use ($type) { |
|
166 | 166 | return $item['type'] == $type; |
167 | 167 | }); |
168 | 168 | } |
@@ -179,8 +179,8 @@ discard block |
||
179 | 179 | |
180 | 180 | public function sync($type, $fields, $attributes) |
181 | 181 | { |
182 | - if (! empty($this->{$type})) { |
|
183 | - $this->{$type} = array_map(function ($field) use ($fields, $attributes) { |
|
182 | + if (!empty($this->{$type})) { |
|
183 | + $this->{$type} = array_map(function($field) use ($fields, $attributes) { |
|
184 | 184 | if (in_array($field['name'], (array) $fields)) { |
185 | 185 | $field = array_merge($field, $attributes); |
186 | 186 | } |
@@ -206,8 +206,8 @@ discard block |
||
206 | 206 | } |
207 | 207 | } |
208 | 208 | |
209 | - return $this->{$items} = array_merge($elements, array_filter($this->{$items}, function ($item) use ($items) { |
|
210 | - return ! in_array($item['name'], $this->sort[$items]); |
|
209 | + return $this->{$items} = array_merge($elements, array_filter($this->{$items}, function($item) use ($items) { |
|
210 | + return !in_array($item['name'], $this->sort[$items]); |
|
211 | 211 | })); |
212 | 212 | } |
213 | 213 |