We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | $relation_model = $this->getRelationModel($relation_field['entity'], -1); |
56 | 56 | $related_method = Str::afterLast($relation_field['entity'], '.'); |
57 | 57 | |
58 | - if (! method_exists($relation_model, $related_method)) { |
|
58 | + if (!method_exists($relation_model, $related_method)) { |
|
59 | 59 | return Str::beforeLast($relation_field['entity'], '.'); |
60 | 60 | } |
61 | 61 | |
@@ -194,7 +194,7 @@ discard block |
||
194 | 194 | return collect($this->fields()) |
195 | 195 | ->where('model') |
196 | 196 | ->whereIn('relation_type', $relation_types) |
197 | - ->filter(function ($item) { |
|
197 | + ->filter(function($item) { |
|
198 | 198 | $related_model = get_class($this->model->{Str::before($item['entity'], '.')}()->getRelated()); |
199 | 199 | |
200 | 200 | return Str::contains($item['entity'], '.') && $item['model'] !== $related_model ? false : true; |
@@ -115,7 +115,7 @@ discard block |
||
115 | 115 | { |
116 | 116 | $all_relation_fields = $this->getRelationFields(); |
117 | 117 | |
118 | - return Arr::where($all_relation_fields, function ($value, $key) { |
|
118 | + return Arr::where($all_relation_fields, function($value, $key) { |
|
119 | 119 | return isset($value['pivot']) && $value['pivot']; |
120 | 120 | }); |
121 | 121 | } |
@@ -194,7 +194,7 @@ discard block |
||
194 | 194 | */ |
195 | 195 | private function createRelationsForItem($item, $formattedData) |
196 | 196 | { |
197 | - if (! isset($formattedData['relations'])) { |
|
197 | + if (!isset($formattedData['relations'])) { |
|
198 | 198 | return false; |
199 | 199 | } |
200 | 200 | foreach ($formattedData['relations'] as $relationMethod => $relationData) { |
@@ -203,7 +203,7 @@ discard block |
||
203 | 203 | if ($relation instanceof HasOne) { |
204 | 204 | if (isset($relationData['relations'])) { |
205 | 205 | // if there are nested relations, we first add the BelongsTo like in main entry |
206 | - $belongsToRelations = Arr::where($relationData['relations'], function ($relation_data) { |
|
206 | + $belongsToRelations = Arr::where($relationData['relations'], function($relation_data) { |
|
207 | 207 | return isset($relation_data['relation_type']) && $relation_data['relation_type'] == 'BelongsTo'; |
208 | 208 | }); |
209 | 209 | |
@@ -212,7 +212,7 @@ discard block |
||
212 | 212 | $valuesWithRelations = $this->associateHasOneBelongsTo($belongsToRelations, $relationData['values'] ?? [], $relation->getModel()); |
213 | 213 | |
214 | 214 | // remove previously added BelongsTo relations from relation data. |
215 | - $relationData['relations'] = Arr::where($relationData['relations'], function ($item) { |
|
215 | + $relationData['relations'] = Arr::where($relationData['relations'], function($item) { |
|
216 | 216 | return isset($item['relation_type']) && $item['relation_type'] != 'BelongsTo'; |
217 | 217 | }); |
218 | 218 | |
@@ -268,7 +268,7 @@ discard block |
||
268 | 268 | */ |
269 | 269 | private function getRelationDataFromFormData($data) |
270 | 270 | { |
271 | - $relation_fields = Arr::where($this->getRelationFields(), function ($field, $key) { |
|
271 | + $relation_fields = Arr::where($this->getRelationFields(), function($field, $key) { |
|
272 | 272 | return $field['relation_type'] !== 'BelongsTo' || $this->isNestedRelation($field); |
273 | 273 | }); |
274 | 274 | |
@@ -278,14 +278,14 @@ discard block |
||
278 | 278 | if (isset($relation_field['pivot']) && $relation_field['pivot'] !== true) { |
279 | 279 | $key = implode('.relations.', explode('.', $this->getOnlyRelationEntity($relation_field))); |
280 | 280 | $fieldData = Arr::get($relationData, 'relations.'.$key, []); |
281 | - if (! array_key_exists('model', $fieldData)) { |
|
281 | + if (!array_key_exists('model', $fieldData)) { |
|
282 | 282 | $fieldData['model'] = $relation_field['model']; |
283 | 283 | } |
284 | - if (! array_key_exists('parent', $fieldData)) { |
|
284 | + if (!array_key_exists('parent', $fieldData)) { |
|
285 | 285 | $fieldData['parent'] = $this->getRelationModel($attributeKey, -1); |
286 | 286 | } |
287 | 287 | |
288 | - if (! array_key_exists('relation_type', $fieldData)) { |
|
288 | + if (!array_key_exists('relation_type', $fieldData)) { |
|
289 | 289 | $fieldData['relation_type'] = $relation_field['relation_type']; |
290 | 290 | } |
291 | 291 |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | */ |
70 | 70 | public function overwriteFieldNameFromDotNotationToArray($field) |
71 | 71 | { |
72 | - if (! is_array($field['name']) && strpos($field['name'], '.') !== false) { |
|
72 | + if (!is_array($field['name']) && strpos($field['name'], '.') !== false) { |
|
73 | 73 | $entity_array = explode('.', $field['name']); |
74 | 74 | $name_string = ''; |
75 | 75 | |
@@ -96,7 +96,7 @@ discard block |
||
96 | 96 | return ['name' => $field]; |
97 | 97 | } |
98 | 98 | |
99 | - if (is_array($field) && ! isset($field['name'])) { |
|
99 | + if (is_array($field) && !isset($field['name'])) { |
|
100 | 100 | abort(500, 'All fields must have their name defined'); |
101 | 101 | } |
102 | 102 | |
@@ -154,7 +154,7 @@ discard block |
||
154 | 154 | protected function overwriteFieldNameFromEntity($field) |
155 | 155 | { |
156 | 156 | // if the entity doesn't have a dot, it means we don't need to overwrite the name |
157 | - if (! Str::contains($field['entity'], '.')) { |
|
157 | + if (!Str::contains($field['entity'], '.')) { |
|
158 | 158 | return $field; |
159 | 159 | } |
160 | 160 | |
@@ -166,7 +166,7 @@ discard block |
||
166 | 166 | if (count(explode('.', $field['entity'])) == count(explode('.', $this->getOnlyRelationEntity($field)))) { |
167 | 167 | $field['name'] = implode('.', array_slice(explode('.', $field['entity']), 0, -1)); |
168 | 168 | $relation = $this->getRelationInstance($field); |
169 | - if (! empty($field['name'])) { |
|
169 | + if (!empty($field['name'])) { |
|
170 | 170 | $field['name'] .= '.'; |
171 | 171 | } |
172 | 172 | $field['name'] .= $relation->getForeignKeyName(); |
@@ -179,7 +179,7 @@ discard block |
||
179 | 179 | { |
180 | 180 | // if there's a model defined, but no attribute |
181 | 181 | // guess an attribute using the identifiableAttribute functionality in CrudTrait |
182 | - if (isset($field['model']) && ! isset($field['attribute']) && method_exists($field['model'], 'identifiableAttribute')) { |
|
182 | + if (isset($field['model']) && !isset($field['attribute']) && method_exists($field['model'], 'identifiableAttribute')) { |
|
183 | 183 | $field['attribute'] = call_user_func([(new $field['model']), 'identifiableAttribute']); |
184 | 184 | } |
185 | 185 | |
@@ -195,7 +195,7 @@ discard block |
||
195 | 195 | */ |
196 | 196 | protected function makeSureFieldHasLabel($field) |
197 | 197 | { |
198 | - if (! isset($field['label'])) { |
|
198 | + if (!isset($field['label'])) { |
|
199 | 199 | $name = is_array($field['name']) ? $field['name'][0] : $field['name']; |
200 | 200 | $name = str_replace('_id', '', $name); |
201 | 201 | $field['label'] = mb_ucfirst(str_replace('_', ' ', $name)); |
@@ -213,7 +213,7 @@ discard block |
||
213 | 213 | */ |
214 | 214 | protected function makeSureFieldHasType($field) |
215 | 215 | { |
216 | - if (! isset($field['type'])) { |
|
216 | + if (!isset($field['type'])) { |
|
217 | 217 | $field['type'] = isset($field['relation_type']) ? $this->inferFieldTypeFromFieldRelation($field) : $this->inferFieldTypeFromDbColumnType($field['name']); |
218 | 218 | } |
219 | 219 | |
@@ -230,7 +230,7 @@ discard block |
||
230 | 230 | { |
231 | 231 | // if a tab was mentioned, we should enable it |
232 | 232 | if (isset($field['tab'])) { |
233 | - if (! $this->tabsEnabled()) { |
|
233 | + if (!$this->tabsEnabled()) { |
|
234 | 234 | $this->enableTabs(); |
235 | 235 | } |
236 | 236 | } |