We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -284,7 +284,7 @@ discard block |
||
| 284 | 284 | |
| 285 | 285 | foreach ($fields as $k => $field) { |
| 286 | 286 | // set the value |
| 287 | - if (! isset($fields[$k]['value'])) { |
|
| 287 | + if (!isset($fields[$k]['value'])) { |
|
| 288 | 288 | if (isset($field['subfields'])) { |
| 289 | 289 | $fields[$k]['value'] = []; |
| 290 | 290 | foreach ($field['subfields'] as $key => $subfield) { |
@@ -418,7 +418,7 @@ discard block |
||
| 418 | 418 | */ |
| 419 | 419 | public function hasAccess($permission) |
| 420 | 420 | { |
| 421 | - if (! in_array($permission, $this->access)) { |
|
| 421 | + if (!in_array($permission, $this->access)) { |
|
| 422 | 422 | return false; |
| 423 | 423 | } |
| 424 | 424 | |
@@ -434,7 +434,7 @@ discard block |
||
| 434 | 434 | */ |
| 435 | 435 | public function hasAccessOrFail($permission) |
| 436 | 436 | { |
| 437 | - if (! in_array($permission, $this->access)) { |
|
| 437 | + if (!in_array($permission, $this->access)) { |
|
| 438 | 438 | abort(403, trans('backpack::crud.unauthorized_access')); |
| 439 | 439 | } |
| 440 | 440 | } |
@@ -457,7 +457,7 @@ discard block |
||
| 457 | 457 | */ |
| 458 | 458 | public function setModel($model_namespace) |
| 459 | 459 | { |
| 460 | - if (! class_exists($model_namespace)) { |
|
| 460 | + if (!class_exists($model_namespace)) { |
|
| 461 | 461 | throw new \Exception('This model does not exist.', 404); |
| 462 | 462 | } |
| 463 | 463 | |
@@ -501,7 +501,7 @@ discard block |
||
| 501 | 501 | { |
| 502 | 502 | $complete_route = $route.'.index'; |
| 503 | 503 | |
| 504 | - if (! \Route::has($complete_route)) { |
|
| 504 | + if (!\Route::has($complete_route)) { |
|
| 505 | 505 | throw new \Exception('There are no routes for this route name.', 404); |
| 506 | 506 | } |
| 507 | 507 | |
@@ -633,7 +633,7 @@ discard block |
||
| 633 | 633 | */ |
| 634 | 634 | public function addDefaultLabel($array) |
| 635 | 635 | { |
| 636 | - if (! array_key_exists('label', (array) $array) && array_key_exists('name', (array) $array)) { |
|
| 636 | + if (!array_key_exists('label', (array) $array) && array_key_exists('name', (array) $array)) { |
|
| 637 | 637 | $array = array_merge(['label' => ucfirst($this->makeLabel($array['name']))], $array); |
| 638 | 638 | |
| 639 | 639 | return $array; |
@@ -723,12 +723,12 @@ discard block |
||
| 723 | 723 | } |
| 724 | 724 | |
| 725 | 725 | // if the label is missing, we should set it |
| 726 | - if (! isset($complete_field_array['label'])) { |
|
| 726 | + if (!isset($complete_field_array['label'])) { |
|
| 727 | 727 | $complete_field_array['label'] = ucfirst($complete_field_array['name']); |
| 728 | 728 | } |
| 729 | 729 | |
| 730 | 730 | // if the field type is missing, we should set it |
| 731 | - if (! isset($complete_field_array['type'])) { |
|
| 731 | + if (!isset($complete_field_array['type'])) { |
|
| 732 | 732 | $complete_field_array['type'] = $this->getFieldTypeFromDbColumnType($complete_field_array['name']); |
| 733 | 733 | } |
| 734 | 734 | |
@@ -790,7 +790,7 @@ discard block |
||
| 790 | 790 | */ |
| 791 | 791 | public function removeFields($array_of_names, $form = 'both') |
| 792 | 792 | { |
| 793 | - if (! empty($array_of_names)) { |
|
| 793 | + if (!empty($array_of_names)) { |
|
| 794 | 794 | foreach ($array_of_names as $name) { |
| 795 | 795 | $this->removeField($name, $form); |
| 796 | 796 | } |
@@ -921,7 +921,7 @@ discard block |
||
| 921 | 921 | { |
| 922 | 922 | $this->getDbColumnTypes(); |
| 923 | 923 | |
| 924 | - array_map(function ($field) { |
|
| 924 | + array_map(function($field) { |
|
| 925 | 925 | // $this->labels[$field] = $this->makeLabel($field); |
| 926 | 926 | |
| 927 | 927 | $new_field = [ |
@@ -935,7 +935,7 @@ discard block |
||
| 935 | 935 | $this->create_fields[] = $new_field; |
| 936 | 936 | $this->update_fields[] = $new_field; |
| 937 | 937 | |
| 938 | - if (! in_array($field, $this->model->getHidden())) { |
|
| 938 | + if (!in_array($field, $this->model->getHidden())) { |
|
| 939 | 939 | $this->columns[] = [ |
| 940 | 940 | 'name' => $field, |
| 941 | 941 | 'label' => ucfirst($field), |
@@ -969,7 +969,7 @@ discard block |
||
| 969 | 969 | */ |
| 970 | 970 | public function getFieldTypeFromDbColumnType($field) |
| 971 | 971 | { |
| 972 | - if (! array_key_exists($field, $this->field_types)) { |
|
| 972 | + if (!array_key_exists($field, $this->field_types)) { |
|
| 973 | 973 | return 'text'; |
| 974 | 974 | } |
| 975 | 975 | |
@@ -1050,7 +1050,7 @@ discard block |
||
| 1050 | 1050 | $columns = \Schema::getColumnListing($this->model->getTable()); |
| 1051 | 1051 | $fillable = $this->model->getFillable(); |
| 1052 | 1052 | |
| 1053 | - if (! empty($fillable)) { |
|
| 1053 | + if (!empty($fillable)) { |
|
| 1054 | 1054 | $columns = array_intersect($columns, $fillable); |
| 1055 | 1055 | } |
| 1056 | 1056 | |
@@ -1098,7 +1098,7 @@ discard block |
||
| 1098 | 1098 | // remove the fake field |
| 1099 | 1099 | array_pull($request, $fields[$k]['name']); |
| 1100 | 1100 | |
| 1101 | - if (! in_array($fields[$k]['store_in'], $fake_field_columns_to_encode, true)) { |
|
| 1101 | + if (!in_array($fields[$k]['store_in'], $fake_field_columns_to_encode, true)) { |
|
| 1102 | 1102 | array_push($fake_field_columns_to_encode, $fields[$k]['store_in']); |
| 1103 | 1103 | } |
| 1104 | 1104 | } else { |
@@ -1109,7 +1109,7 @@ discard block |
||
| 1109 | 1109 | // remove the fake field |
| 1110 | 1110 | array_pull($request, $fields[$k]['name']); |
| 1111 | 1111 | |
| 1112 | - if (! in_array('extras', $fake_field_columns_to_encode, true)) { |
|
| 1112 | + if (!in_array('extras', $fake_field_columns_to_encode, true)) { |
|
| 1113 | 1113 | array_push($fake_field_columns_to_encode, 'extras'); |
| 1114 | 1114 | } |
| 1115 | 1115 | } |
@@ -1152,20 +1152,20 @@ discard block |
||
| 1152 | 1152 | if (isset($fields[$k]['fake']) && $fields[$k]['fake'] == true) { |
| 1153 | 1153 | // add it to the request in its appropriate variable - the one defined, if defined |
| 1154 | 1154 | if (isset($fields[$k]['store_in'])) { |
| 1155 | - if (! in_array($fields[$k]['store_in'], $fake_field_columns_to_encode, true)) { |
|
| 1155 | + if (!in_array($fields[$k]['store_in'], $fake_field_columns_to_encode, true)) { |
|
| 1156 | 1156 | array_push($fake_field_columns_to_encode, $fields[$k]['store_in']); |
| 1157 | 1157 | } |
| 1158 | 1158 | } else { |
| 1159 | 1159 | //otherwise in the one defined in the $crud variable |
| 1160 | 1160 | |
| 1161 | - if (! in_array('extras', $fake_field_columns_to_encode, true)) { |
|
| 1161 | + if (!in_array('extras', $fake_field_columns_to_encode, true)) { |
|
| 1162 | 1162 | array_push($fake_field_columns_to_encode, 'extras'); |
| 1163 | 1163 | } |
| 1164 | 1164 | } |
| 1165 | 1165 | } |
| 1166 | 1166 | } |
| 1167 | 1167 | |
| 1168 | - if (! count($fake_field_columns_to_encode)) { |
|
| 1168 | + if (!count($fake_field_columns_to_encode)) { |
|
| 1169 | 1169 | return ['extras']; |
| 1170 | 1170 | } |
| 1171 | 1171 | |
@@ -1186,7 +1186,7 @@ discard block |
||
| 1186 | 1186 | */ |
| 1187 | 1187 | public function getFirstOfItsTypeInArray($type, $array) |
| 1188 | 1188 | { |
| 1189 | - return array_first($array, function ($key, $item) use ($type) { |
|
| 1189 | + return array_first($array, function($key, $item) use ($type) { |
|
| 1190 | 1190 | return $item['type'] == $type; |
| 1191 | 1191 | }); |
| 1192 | 1192 | } |
@@ -1223,7 +1223,7 @@ discard block |
||
| 1223 | 1223 | |
| 1224 | 1224 | public function showButtons() |
| 1225 | 1225 | { |
| 1226 | - return ! empty($this->buttons) && ! (count($this->buttons) == 1 && array_key_exists('add', $this->buttons)); |
|
| 1226 | + return !empty($this->buttons) && !(count($this->buttons) == 1 && array_key_exists('add', $this->buttons)); |
|
| 1227 | 1227 | } |
| 1228 | 1228 | |
| 1229 | 1229 | public function initButtons() |
@@ -1262,8 +1262,8 @@ discard block |
||
| 1262 | 1262 | |
| 1263 | 1263 | public function sync($type, $fields, $attributes) |
| 1264 | 1264 | { |
| 1265 | - if (! empty($this->{$type})) { |
|
| 1266 | - $this->{$type} = array_map(function ($field) use ($fields, $attributes) { |
|
| 1265 | + if (!empty($this->{$type})) { |
|
| 1266 | + $this->{$type} = array_map(function($field) use ($fields, $attributes) { |
|
| 1267 | 1267 | if (in_array($field['name'], (array) $fields)) { |
| 1268 | 1268 | $field = array_merge($field, $attributes); |
| 1269 | 1269 | } |
@@ -1289,7 +1289,7 @@ discard block |
||
| 1289 | 1289 | } |
| 1290 | 1290 | } |
| 1291 | 1291 | |
| 1292 | - return $this->{$items} = array_merge($elements, array_filter($this->{$items}, function ($item) use ($items) {return ! in_array($item['name'], $this->sort[$items]); })); |
|
| 1292 | + return $this->{$items} = array_merge($elements, array_filter($this->{$items}, function($item) use ($items) {return !in_array($item['name'], $this->sort[$items]); })); |
|
| 1293 | 1293 | } |
| 1294 | 1294 | |
| 1295 | 1295 | return $this->{$items}; |
@@ -174,7 +174,7 @@ |
||
| 174 | 174 | { |
| 175 | 175 | $this->crud->hasAccessOrFail('reorder'); |
| 176 | 176 | |
| 177 | - if (! $this->crud->isReorderEnabled()) { |
|
| 177 | + if (!$this->crud->isReorderEnabled()) { |
|
| 178 | 178 | abort(403, 'Reorder is disabled.'); |
| 179 | 179 | } |
| 180 | 180 | |
@@ -52,7 +52,7 @@ discard block |
||
| 52 | 52 | foreach ($columns as $key => $column) { |
| 53 | 53 | $column_contents = $this->{$column}; |
| 54 | 54 | |
| 55 | - if (! is_object($this->{$column})) { |
|
| 55 | + if (!is_object($this->{$column})) { |
|
| 56 | 56 | $column_contents = json_decode($this->{$column}); |
| 57 | 57 | } |
| 58 | 58 | |
@@ -75,7 +75,7 @@ discard block |
||
| 75 | 75 | { |
| 76 | 76 | $model = '\\'.get_class($this); |
| 77 | 77 | |
| 78 | - if (! count($columns)) { |
|
| 78 | + if (!count($columns)) { |
|
| 79 | 79 | if (property_exists($model, 'fakeColumns')) { |
| 80 | 80 | $columns = $this->fakeColumns; |
| 81 | 81 | } else { |