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 tabsDisabled() |
| 34 | 34 | { |
| 35 | - return ! $this->tabsEnabled(); |
|
| 35 | + return !$this->tabsEnabled(); |
|
| 36 | 36 | } |
| 37 | 37 | |
| 38 | 38 | public function setTabsType($type) |
@@ -114,8 +114,8 @@ discard block |
||
| 114 | 114 | { |
| 115 | 115 | $all_fields = $this->getCurrentFields(); |
| 116 | 116 | |
| 117 | - $fields_without_a_tab = collect($all_fields)->filter(function ($value, $key) { |
|
| 118 | - return ! isset($value['tab']); |
|
| 117 | + $fields_without_a_tab = collect($all_fields)->filter(function($value, $key) { |
|
| 118 | + return !isset($value['tab']); |
|
| 119 | 119 | }); |
| 120 | 120 | |
| 121 | 121 | return $fields_without_a_tab; |
@@ -131,7 +131,7 @@ discard block |
||
| 131 | 131 | if ($this->tabExists($label)) { |
| 132 | 132 | $all_fields = $this->getCurrentFields(); |
| 133 | 133 | |
| 134 | - $fields_for_current_tab = collect($all_fields)->filter(function ($value, $key) use ($label) { |
|
| 134 | + $fields_for_current_tab = collect($all_fields)->filter(function($value, $key) use ($label) { |
|
| 135 | 135 | return isset($value['tab']) && $value['tab'] == $label; |
| 136 | 136 | }); |
| 137 | 137 | |
@@ -150,11 +150,11 @@ discard block |
||
| 150 | 150 | $fields = $this->getCurrentFields(); |
| 151 | 151 | |
| 152 | 152 | $fields_with_tabs = collect($fields) |
| 153 | - ->filter(function ($value, $key) { |
|
| 153 | + ->filter(function($value, $key) { |
|
| 154 | 154 | return isset($value['tab']); |
| 155 | 155 | }) |
| 156 | - ->each(function ($value, $key) use (&$tabs) { |
|
| 157 | - if (! in_array($value['tab'], $tabs)) { |
|
| 156 | + ->each(function($value, $key) use (&$tabs) { |
|
| 157 | + if (!in_array($value['tab'], $tabs)) { |
|
| 158 | 158 | $tabs[] = $value['tab']; |
| 159 | 159 | } |
| 160 | 160 | }); |
@@ -68,7 +68,7 @@ |
||
| 68 | 68 | */ |
| 69 | 69 | public function customOrderBy($column, $columnDirection = 'asc') |
| 70 | 70 | { |
| 71 | - if (! isset($column['orderLogic'])) { |
|
| 71 | + if (!isset($column['orderLogic'])) { |
|
| 72 | 72 | return $this->query; |
| 73 | 73 | } |
| 74 | 74 | |
@@ -94,7 +94,7 @@ |
||
| 94 | 94 | */ |
| 95 | 95 | public function isRequired($inputKey) |
| 96 | 96 | { |
| 97 | - if (! $this->hasOperationSetting('requiredFields')) { |
|
| 97 | + if (!$this->hasOperationSetting('requiredFields')) { |
|
| 98 | 98 | return false; |
| 99 | 99 | } |
| 100 | 100 | |
@@ -24,19 +24,19 @@ |
||
| 24 | 24 | if (isset($field['fake']) && $field['fake'] == true) { |
| 25 | 25 | // add it to the request in its appropriate variable - the one defined, if defined |
| 26 | 26 | if (isset($field['store_in'])) { |
| 27 | - if (! in_array($field['store_in'], $fakeFieldsColumnsArray, true)) { |
|
| 27 | + if (!in_array($field['store_in'], $fakeFieldsColumnsArray, true)) { |
|
| 28 | 28 | array_push($fakeFieldsColumnsArray, $field['store_in']); |
| 29 | 29 | } |
| 30 | 30 | } else { |
| 31 | 31 | //otherwise in the one defined in the $crud variable |
| 32 | - if (! in_array('extras', $fakeFieldsColumnsArray, true)) { |
|
| 32 | + if (!in_array('extras', $fakeFieldsColumnsArray, true)) { |
|
| 33 | 33 | array_push($fakeFieldsColumnsArray, 'extras'); |
| 34 | 34 | } |
| 35 | 35 | } |
| 36 | 36 | } |
| 37 | 37 | } |
| 38 | 38 | |
| 39 | - if (! count($fakeFieldsColumnsArray)) { |
|
| 39 | + if (!count($fakeFieldsColumnsArray)) { |
|
| 40 | 40 | $fakeFieldsColumnsArray = ['extras']; |
| 41 | 41 | } |
| 42 | 42 | |
@@ -76,11 +76,11 @@ discard block |
||
| 76 | 76 | */ |
| 77 | 77 | public function setModel($model_namespace) |
| 78 | 78 | { |
| 79 | - if (! class_exists($model_namespace)) { |
|
| 79 | + if (!class_exists($model_namespace)) { |
|
| 80 | 80 | throw new \Exception('The model does not exist.', 500); |
| 81 | 81 | } |
| 82 | 82 | |
| 83 | - if (! method_exists($model_namespace, 'hasCrudTrait')) { |
|
| 83 | + if (!method_exists($model_namespace, 'hasCrudTrait')) { |
|
| 84 | 84 | throw new \Exception('Please use CrudTrait on the model.', 500); |
| 85 | 85 | } |
| 86 | 86 | |
@@ -143,7 +143,7 @@ discard block |
||
| 143 | 143 | { |
| 144 | 144 | $complete_route = $route.'.index'; |
| 145 | 145 | |
| 146 | - if (! \Route::has($complete_route)) { |
|
| 146 | + if (!\Route::has($complete_route)) { |
|
| 147 | 147 | throw new \Exception('There are no routes for this route name.', 404); |
| 148 | 148 | } |
| 149 | 149 | |
@@ -244,7 +244,7 @@ discard block |
||
| 244 | 244 | */ |
| 245 | 245 | public function getFirstOfItsTypeInArray($type, $array) |
| 246 | 246 | { |
| 247 | - return array_first($array, function ($item) use ($type) { |
|
| 247 | + return array_first($array, function($item) use ($type) { |
|
| 248 | 248 | return $item['type'] == $type; |
| 249 | 249 | }); |
| 250 | 250 | } |
@@ -261,8 +261,8 @@ discard block |
||
| 261 | 261 | |
| 262 | 262 | public function sync($type, $fields, $attributes) |
| 263 | 263 | { |
| 264 | - if (! empty($this->{$type})) { |
|
| 265 | - $this->{$type} = array_map(function ($field) use ($fields, $attributes) { |
|
| 264 | + if (!empty($this->{$type})) { |
|
| 265 | + $this->{$type} = array_map(function($field) use ($fields, $attributes) { |
|
| 266 | 266 | if (in_array($field['name'], (array) $fields)) { |
| 267 | 267 | $field = array_merge($field, $attributes); |
| 268 | 268 | } |
@@ -294,15 +294,15 @@ discard block |
||
| 294 | 294 | { |
| 295 | 295 | $relationArray = explode('.', $relationString); |
| 296 | 296 | |
| 297 | - if (! isset($length)) { |
|
| 297 | + if (!isset($length)) { |
|
| 298 | 298 | $length = count($relationArray); |
| 299 | 299 | } |
| 300 | 300 | |
| 301 | - if (! isset($model)) { |
|
| 301 | + if (!isset($model)) { |
|
| 302 | 302 | $model = $this->model; |
| 303 | 303 | } |
| 304 | 304 | |
| 305 | - $result = array_reduce(array_splice($relationArray, 0, $length), function ($obj, $method) { |
|
| 305 | + $result = array_reduce(array_splice($relationArray, 0, $length), function($obj, $method) { |
|
| 306 | 306 | return $obj->$method()->getRelated(); |
| 307 | 307 | }, $model); |
| 308 | 308 | |
@@ -352,7 +352,7 @@ discard block |
||
| 352 | 352 | $relation = $model->{$firstRelationName}; |
| 353 | 353 | |
| 354 | 354 | $results = []; |
| 355 | - if (! empty($relation)) { |
|
| 355 | + if (!empty($relation)) { |
|
| 356 | 356 | if ($relation instanceof Collection) { |
| 357 | 357 | $currentResults = $relation->toArray(); |
| 358 | 358 | } else { |
@@ -361,7 +361,7 @@ discard block |
||
| 361 | 361 | |
| 362 | 362 | array_shift($relationArray); |
| 363 | 363 | |
| 364 | - if (! empty($relationArray)) { |
|
| 364 | + if (!empty($relationArray)) { |
|
| 365 | 365 | foreach ($currentResults as $currentResult) { |
| 366 | 366 | $results = array_merge($results, $this->getRelationModelInstances($currentResult, implode('.', $relationArray))); |
| 367 | 367 | } |
@@ -56,7 +56,7 @@ |
||
| 56 | 56 | return $this->respondToUnauthorizedRequest($request); |
| 57 | 57 | } |
| 58 | 58 | |
| 59 | - if (! $this->checkIfUserIsAdmin(backpack_user())) { |
|
| 59 | + if (!$this->checkIfUserIsAdmin(backpack_user())) { |
|
| 60 | 60 | return $this->respondToUnauthorizedRequest($request); |
| 61 | 61 | } |
| 62 | 62 | |
@@ -88,7 +88,7 @@ discard block |
||
| 88 | 88 | public function showRegistrationForm() |
| 89 | 89 | { |
| 90 | 90 | // if registration is closed, deny access |
| 91 | - if (! config('backpack.base.registration_open')) { |
|
| 91 | + if (!config('backpack.base.registration_open')) { |
|
| 92 | 92 | abort(403, trans('backpack::base.registration_closed')); |
| 93 | 93 | } |
| 94 | 94 | |
@@ -107,7 +107,7 @@ discard block |
||
| 107 | 107 | public function register(Request $request) |
| 108 | 108 | { |
| 109 | 109 | // if registration is closed, deny access |
| 110 | - if (! config('backpack.base.registration_open')) { |
|
| 110 | + if (!config('backpack.base.registration_open')) { |
|
| 111 | 111 | abort(403, trans('backpack::base.registration_closed')); |
| 112 | 112 | } |
| 113 | 113 | |
@@ -47,7 +47,7 @@ |
||
| 47 | 47 | |
| 48 | 48 | $this->middleware("guest:$guard"); |
| 49 | 49 | |
| 50 | - if (! backpack_users_have_email()) { |
|
| 50 | + if (!backpack_users_have_email()) { |
|
| 51 | 51 | abort(501, trans('backpack::base.no_email_column')); |
| 52 | 52 | } |
| 53 | 53 | |
@@ -41,9 +41,9 @@ |
||
| 41 | 41 | */ |
| 42 | 42 | public function withValidator($validator) |
| 43 | 43 | { |
| 44 | - $validator->after(function ($validator) { |
|
| 44 | + $validator->after(function($validator) { |
|
| 45 | 45 | // check old password matches |
| 46 | - if (! Hash::check($this->input('old_password'), backpack_auth()->user()->password)) { |
|
| 46 | + if (!Hash::check($this->input('old_password'), backpack_auth()->user()->password)) { |
|
| 47 | 47 | $validator->errors()->add('old_password', trans('backpack::base.old_password_incorrect')); |
| 48 | 48 | } |
| 49 | 49 | }); |