Scrutinizer GitHub App not installed

We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.

Install GitHub App

Test Setup Failed
Pull Request — master (#2940)
by Cristian
14:26
created
src/resources/views/crud/fields/date_range.blade.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -3,11 +3,11 @@  discard block
 block discarded – undo
3 3
 <?php
4 4
     // if the column has been cast to Carbon or Date (using attribute casting)
5 5
     // get the value as a date string
6
-    if (! function_exists('formatDate')) {
6
+    if (!function_exists('formatDate')) {
7 7
         function formatDate($entry, $dateFieldName)
8 8
         {
9 9
             $formattedDate = null;
10
-            if (isset($entry) && ! empty($entry->{$dateFieldName})) {
10
+            if (isset($entry) && !empty($entry->{$dateFieldName})) {
11 11
                 $dateField = $entry->{$dateFieldName};
12 12
                 if ($dateField instanceof \Carbon\CarbonInterface) {
13 13
                     $formattedDate = $dateField->format('Y-m-d H:i:s');
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
         }
21 21
     }
22 22
     if (isset($field['value'])) {
23
-        if (isset($entry) && ! is_array($field['value'])) {
23
+        if (isset($entry) && !is_array($field['value'])) {
24 24
             $start_value = formatDate($entry, $field['name'][0]);
25 25
             $end_value = formatDate($entry, $field['name'][1]);
26 26
         } elseif (is_array($field['value'])) {
Please login to merge, or discard this patch.
src/app/Library/CrudPanel/Traits/SaveActions.php 1 patch
Spacing   +16 added lines, -17 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
         $higherAction = $this->getSaveActionByOrder(1);
29 29
 
30 30
         //if there is an higher action and that action is not the backpack default higher one `save_and_back` we return it.
31
-        if (! empty($higherAction) && key($higherAction) !== 'save_and_back') {
31
+        if (!empty($higherAction) && key($higherAction) !== 'save_and_back') {
32 32
             return key($higherAction);
33 33
         }
34 34
 
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
      */
48 48
     public function getSaveActionByOrder($order)
49 49
     {
50
-        return array_filter($this->getOperationSetting('save_actions'), function ($arr) use ($order) {
50
+        return array_filter($this->getOperationSetting('save_actions'), function($arr) use ($order) {
51 51
             return $arr['order'] == $order;
52 52
         });
53 53
     }
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
         $orderCounter = $this->getOperationSetting('save_actions') !== null ? (count($this->getOperationSetting('save_actions')) + 1) : 1;
82 82
         //check for some mandatory fields
83 83
         $saveAction['name'] ?? abort(500, 'Please define save action name.');
84
-        $saveAction['redirect'] = $saveAction['redirect'] ?? function ($crud, $request, $itemId) {
84
+        $saveAction['redirect'] = $saveAction['redirect'] ?? function($crud, $request, $itemId) {
85 85
             return $request->has('_http_referrer') ? $request->get('_http_referrer') : $crud->route;
86 86
         };
87 87
         $saveAction['visible'] = $saveAction['visible'] ?? true;
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
 
91 91
         $actions = $this->getOperationSetting('save_actions') ?? [];
92 92
 
93
-        if (! in_array($saveAction['name'], $actions)) {
93
+        if (!in_array($saveAction['name'], $actions)) {
94 94
             $actions[$saveAction['name']] = $saveAction;
95 95
         }
96 96
 
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
     public function orderSaveAction(string $saveAction, int $wantedOrder)
108 108
     {
109 109
         $actions = $this->getOperationSetting('save_actions') ?? [];
110
-        if (! empty($actions)) {
110
+        if (!empty($actions)) {
111 111
             $replaceOrder = isset($actions[$saveAction]) ? $actions[$saveAction]['order'] : count($actions) + 1;
112 112
 
113 113
             foreach ($actions as $key => $sv) {
@@ -201,7 +201,7 @@  discard block
 block discarded – undo
201 201
     public function orderSaveActions(array $saveActions)
202 202
     {
203 203
         foreach ($saveActions as $sv => $order) {
204
-            if (! is_int($order)) {
204
+            if (!is_int($order)) {
205 205
                 $this->orderSaveAction($order, $sv + 1);
206 206
             } else {
207 207
                 $this->orderSaveAction($sv, $order);
@@ -218,7 +218,7 @@  discard block
 block discarded – undo
218 218
     {
219 219
         $actions = $this->getOperationSetting('save_actions') ?? [];
220 220
 
221
-        uasort($actions, function ($a, $b) {
221
+        uasort($actions, function($a, $b) {
222 222
             return $a['order'] <=> $b['order'];
223 223
         });
224 224
 
@@ -240,7 +240,7 @@  discard block
 block discarded – undo
240 240
             }
241 241
         }
242 242
 
243
-        return array_filter($actions, function ($action) {
243
+        return array_filter($actions, function($action) {
244 244
             return $action['visible'] == true;
245 245
         }, ARRAY_FILTER_USE_BOTH);
246 246
     }
@@ -303,8 +303,7 @@  discard block
 block discarded – undo
303 303
      */
304 304
     public function setSaveAction($forceSaveAction = null)
305 305
     {
306
-        $saveAction = $forceSaveAction ?:
307
-            \Request::input('_save_action', $this->getFallBackSaveAction());
306
+        $saveAction = $forceSaveAction ?: \Request::input('_save_action', $this->getFallBackSaveAction());
308 307
 
309 308
         $showBubble = $this->getOperationSetting('showSaveActionChange') ?? config('backpack.crud.operations.'.$this->getCurrentOperation().'.showSaveActionChange') ?? true;
310 309
 
@@ -371,20 +370,20 @@  discard block
 block discarded – undo
371 370
         $defaultSaveActions = [
372 371
             [
373 372
                 'name' => 'save_and_back',
374
-                'visible' => function ($crud) {
373
+                'visible' => function($crud) {
375 374
                     return $crud->hasAccess('list');
376 375
                 },
377
-                'redirect' => function ($crud, $request, $itemId = null) {
376
+                'redirect' => function($crud, $request, $itemId = null) {
378 377
                     return $request->has('_http_referrer') ? $request->get('_http_referrer') : $crud->route;
379 378
                 },
380 379
                 'button_text' => trans('backpack::crud.save_action_save_and_back'),
381 380
             ],
382 381
             [
383 382
                 'name' => 'save_and_edit',
384
-                'visible' => function ($crud) {
383
+                'visible' => function($crud) {
385 384
                     return $crud->hasAccess('update');
386 385
                 },
387
-                'redirect' => function ($crud, $request, $itemId = null) {
386
+                'redirect' => function($crud, $request, $itemId = null) {
388 387
                     $itemId = $itemId ?: $request->input('id');
389 388
                     $redirectUrl = $crud->route.'/'.$itemId.'/edit';
390 389
                     if ($request->has('_locale')) {
@@ -396,17 +395,17 @@  discard block
 block discarded – undo
396 395
 
397 396
                     return $redirectUrl;
398 397
                 },
399
-                'referrer_url' => function ($crud, $request, $itemId) {
398
+                'referrer_url' => function($crud, $request, $itemId) {
400 399
                     return url($crud->route.'/'.$itemId.'/edit');
401 400
                 },
402 401
                 'button_text' => trans('backpack::crud.save_action_save_and_edit'),
403 402
             ],
404 403
             [
405 404
                 'name' => 'save_and_new',
406
-                'visible' => function ($crud) {
405
+                'visible' => function($crud) {
407 406
                     return $crud->hasAccess('create');
408 407
                 },
409
-                'redirect' => function ($crud, $request, $itemId = null) {
408
+                'redirect' => function($crud, $request, $itemId = null) {
410 409
                     return $this->route.'/create';
411 410
                 },
412 411
                 'button_text' => trans('backpack::crud.save_action_save_and_new'),
Please login to merge, or discard this patch.
src/app/Http/Controllers/Operations/ShowOperation.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -30,21 +30,21 @@
 block discarded – undo
30 30
         $this->crud->allowAccess('show');
31 31
         $this->crud->setOperationSetting('setFromDb', true);
32 32
 
33
-        $this->crud->operation('show', function () {
33
+        $this->crud->operation('show', function() {
34 34
             $this->crud->loadDefaultOperationSettingsFromConfig();
35 35
         });
36 36
 
37
-        $this->crud->operation('list', function () {
37
+        $this->crud->operation('list', function() {
38 38
             $this->crud->addButton('line', 'show', 'view', 'crud::buttons.show', 'beginning');
39 39
         });
40 40
 
41
-        $this->crud->operation(['create', 'update'], function () {
41
+        $this->crud->operation(['create', 'update'], function() {
42 42
             $this->crud->addSaveAction([
43 43
                 'name' => 'save_and_preview',
44
-                'visible' => function ($crud) {
44
+                'visible' => function($crud) {
45 45
                     return $crud->hasAccess('show');
46 46
                 },
47
-                'redirect' => function ($crud, $request, $itemId = null) {
47
+                'redirect' => function($crud, $request, $itemId = null) {
48 48
                     $itemId = $itemId ?: $request->input('id');
49 49
                     $redirectUrl = $crud->route.'/'.$itemId.'/show';
50 50
                     if ($request->has('_locale')) {
Please login to merge, or discard this patch.
src/BackpackServiceProvider.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -58,18 +58,18 @@  discard block
 block discarded – undo
58 58
     public function register()
59 59
     {
60 60
         // Bind the CrudPanel object to Laravel's service container
61
-        $this->app->singleton('crud', function ($app) {
61
+        $this->app->singleton('crud', function($app) {
62 62
             return new CrudPanel($app);
63 63
         });
64 64
 
65 65
         // Bind the widgets collection object to Laravel's service container
66
-        $this->app->singleton('widgets', function ($app) {
66
+        $this->app->singleton('widgets', function($app) {
67 67
             return new Collection();
68 68
         });
69 69
 
70 70
         // load a macro for Route,
71 71
         // helps developers load all routes for a CRUD resource in one line
72
-        if (! Route::hasMacro('crud')) {
72
+        if (!Route::hasMacro('crud')) {
73 73
             $this->addRouteMacro();
74 74
         }
75 75
 
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
         $middleware_key = config('backpack.base.middleware_key');
86 86
         $middleware_class = config('backpack.base.middleware_class');
87 87
 
88
-        if (! is_array($middleware_class)) {
88
+        if (!is_array($middleware_class)) {
89 89
             $router->pushMiddlewareToGroup($middleware_key, $middleware_class);
90 90
 
91 91
             return;
@@ -187,7 +187,7 @@  discard block
 block discarded – undo
187 187
      */
188 188
     private function addRouteMacro()
189 189
     {
190
-        Route::macro('crud', function ($name, $controller) {
190
+        Route::macro('crud', function($name, $controller) {
191 191
             // put together the route name prefix,
192 192
             // as passed to the Route::group() statements
193 193
             $routeName = '';
@@ -242,7 +242,7 @@  discard block
 block discarded – undo
242 242
         $operationConfigs = scandir(__DIR__.'/config/backpack/operations/');
243 243
         $operationConfigs = array_diff($operationConfigs, ['.', '..']);
244 244
 
245
-        if (! count($operationConfigs)) {
245
+        if (!count($operationConfigs)) {
246 246
             return;
247 247
         }
248 248
 
Please login to merge, or discard this patch.
src/app/Library/CrudPanel/Traits/AutoSet.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -16,8 +16,8 @@  discard block
 block discarded – undo
16 16
             $this->getDbColumnTypes();
17 17
         }
18 18
 
19
-        array_map(function ($field) use ($setFields, $setColumns) {
20
-            if ($setFields && ! isset($this->getCleanStateFields()[$field])) {
19
+        array_map(function($field) use ($setFields, $setColumns) {
20
+            if ($setFields && !isset($this->getCleanStateFields()[$field])) {
21 21
                 $this->addField([
22 22
                     'name'       => $field,
23 23
                     'label'      => $this->makeLabel($field),
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
                 ]);
31 31
             }
32 32
 
33
-            if ($setColumns && ! in_array($field, $this->model->getHidden()) && ! isset($this->columns()[$field])) {
33
+            if ($setColumns && !in_array($field, $this->model->getHidden()) && !isset($this->columns()[$field])) {
34 34
                 $this->addColumn([
35 35
                     'name'    => $field,
36 36
                     'label'   => $this->makeLabel($field),
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
 
108 108
         $dbColumnTypes = $this->getDbColumnTypes();
109 109
 
110
-        if (! isset($dbColumnTypes[$fieldName])) {
110
+        if (!isset($dbColumnTypes[$fieldName])) {
111 111
             return 'text';
112 112
         }
113 113
 
@@ -165,7 +165,7 @@  discard block
 block discarded – undo
165 165
         $types = ['enum' => 'string'];
166 166
         $platform = $this->getSchema()->getConnection()->getDoctrineSchemaManager()->getDatabasePlatform();
167 167
         foreach ($types as $type_key => $type_value) {
168
-            if (! $platform->hasDoctrineTypeMappingFor($type_key)) {
168
+            if (!$platform->hasDoctrineTypeMappingFor($type_key)) {
169 169
                 $platform->registerDoctrineTypeMapping($type_key, $type_value);
170 170
             }
171 171
         }
@@ -216,13 +216,13 @@  discard block
 block discarded – undo
216 216
     {
217 217
         $fillable = $this->model->getFillable();
218 218
 
219
-        if (! $this->driverIsSql()) {
219
+        if (!$this->driverIsSql()) {
220 220
             $columns = $fillable;
221 221
         } else {
222 222
             // Automatically-set columns should be both in the database, and in the $fillable variable on the Eloquent Model
223 223
             $columns = $this->model->getConnection()->getSchemaBuilder()->getColumnListing($this->model->getTable());
224 224
 
225
-            if (! empty($fillable)) {
225
+            if (!empty($fillable)) {
226 226
                 $columns = array_intersect($columns, $fillable);
227 227
             }
228 228
         }
Please login to merge, or discard this patch.
src/app/Library/CrudPanel/Traits/Fields.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
      */
89 89
     public function afterField($targetFieldName)
90 90
     {
91
-        $this->transformFields(function ($fields) use ($targetFieldName) {
91
+        $this->transformFields(function($fields) use ($targetFieldName) {
92 92
             return $this->moveField($fields, $targetFieldName, false);
93 93
         });
94 94
     }
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
      */
101 101
     public function beforeField($targetFieldName)
102 102
     {
103
-        $this->transformFields(function ($fields) use ($targetFieldName) {
103
+        $this->transformFields(function($fields) use ($targetFieldName) {
104 104
             return $this->moveField($fields, $targetFieldName, true);
105 105
         });
106 106
     }
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
      */
113 113
     public function makeFirstField()
114 114
     {
115
-        if (! $this->fields()) {
115
+        if (!$this->fields()) {
116 116
             return false;
117 117
         }
118 118
 
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
      */
128 128
     public function removeField($name)
129 129
     {
130
-        $this->transformFields(function ($fields) use ($name) {
130
+        $this->transformFields(function($fields) use ($name) {
131 131
             Arr::forget($fields, $name);
132 132
 
133 133
             return $fields;
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
      */
142 142
     public function removeFields($array_of_names)
143 143
     {
144
-        if (! empty($array_of_names)) {
144
+        if (!empty($array_of_names)) {
145 145
             foreach ($array_of_names as $name) {
146 146
                 $this->removeField($name);
147 147
             }
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
     public function removeAllFields()
155 155
     {
156 156
         $current_fields = $this->getCleanStateFields();
157
-        if (! empty($current_fields)) {
157
+        if (!empty($current_fields)) {
158 158
             foreach ($current_fields as $field) {
159 159
                 $this->removeField($field['name']);
160 160
             }
@@ -246,7 +246,7 @@  discard block
 block discarded – undo
246 246
                 $jsonCastables = ['array', 'object', 'json'];
247 247
                 $fieldCasting = $casted_attributes[$field['name']];
248 248
 
249
-                if (in_array($fieldCasting, $jsonCastables) && isset($data[$field['name']]) && ! empty($data[$field['name']]) && ! is_array($data[$field['name']])) {
249
+                if (in_array($fieldCasting, $jsonCastables) && isset($data[$field['name']]) && !empty($data[$field['name']]) && !is_array($data[$field['name']])) {
250 250
                     try {
251 251
                         $data[$field['name']] = json_decode($data[$field['name']]);
252 252
                     } catch (\Exception $e) {
@@ -275,7 +275,7 @@  discard block
 block discarded – undo
275 275
      */
276 276
     public function orderFields($order)
277 277
     {
278
-        $this->transformFields(function ($fields) use ($order) {
278
+        $this->transformFields(function($fields) use ($order) {
279 279
             return $this->applyOrderToFields($fields, $order);
280 280
         });
281 281
     }
@@ -301,7 +301,7 @@  discard block
 block discarded – undo
301 301
     public function hasUploadFields()
302 302
     {
303 303
         $fields = $this->getCleanStateFields();
304
-        $upload_fields = Arr::where($fields, function ($value, $key) {
304
+        $upload_fields = Arr::where($fields, function($value, $key) {
305 305
             return isset($value['upload']) && $value['upload'] == true;
306 306
         });
307 307
 
@@ -364,7 +364,7 @@  discard block
 block discarded – undo
364 364
         $alreadyLoaded = $this->getLoadedFieldTypes();
365 365
         $type = $this->getFieldTypeWithNamespace($field);
366 366
 
367
-        if (! in_array($type, $this->getLoadedFieldTypes(), true)) {
367
+        if (!in_array($type, $this->getLoadedFieldTypes(), true)) {
368 368
             $alreadyLoaded[] = $type;
369 369
             $this->setLoadedFieldTypes($alreadyLoaded);
370 370
 
@@ -405,7 +405,7 @@  discard block
 block discarded – undo
405 405
      */
406 406
     public function fieldTypeNotLoaded($field)
407 407
     {
408
-        return ! in_array($this->getFieldTypeWithNamespace($field), $this->getLoadedFieldTypes());
408
+        return !in_array($this->getFieldTypeWithNamespace($field), $this->getLoadedFieldTypes());
409 409
     }
410 410
 
411 411
     /**
@@ -445,7 +445,7 @@  discard block
 block discarded – undo
445 445
      */
446 446
     public function hasFieldWhere($attribute, $value)
447 447
     {
448
-        $match = Arr::first($this->getCleanStateFields(), function ($field, $fieldKey) use ($attribute, $value) {
448
+        $match = Arr::first($this->getCleanStateFields(), function($field, $fieldKey) use ($attribute, $value) {
449 449
             return isset($field[$attribute]) && $field[$attribute] == $value;
450 450
         });
451 451
 
@@ -461,7 +461,7 @@  discard block
 block discarded – undo
461 461
      */
462 462
     public function firstFieldWhere($attribute, $value)
463 463
     {
464
-        return Arr::first($this->getCleanStateFields(), function ($field, $fieldKey) use ($attribute, $value) {
464
+        return Arr::first($this->getCleanStateFields(), function($field, $fieldKey) use ($attribute, $value) {
465 465
             return isset($field[$attribute]) && $field[$attribute] == $value;
466 466
         });
467 467
     }
Please login to merge, or discard this patch.
src/app/Library/CrudPanel/Traits/FieldsProtectedMethods.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
      */
69 69
     public function overwriteFieldNameFromDotNotationToArray($field)
70 70
     {
71
-        if (! is_array($field['name']) && strpos($field['name'], '.') !== false) {
71
+        if (!is_array($field['name']) && strpos($field['name'], '.') !== false) {
72 72
             $entity_array = explode('.', $field['name']);
73 73
             $name_string = '';
74 74
 
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
             return ['name' => $field];
111 111
         }
112 112
 
113
-        if (is_array($field) && ! isset($field['name'])) {
113
+        if (is_array($field) && !isset($field['name'])) {
114 114
             abort(500, 'All fields must have their name defined');
115 115
         }
116 116
 
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
     {
170 170
         // if there's a model defined, but no attribute
171 171
         // guess an attribute using the identifiableAttribute functionality in CrudTrait
172
-        if (isset($field['model']) && ! isset($field['attribute']) && method_exists($field['model'], 'identifiableAttribute')) {
172
+        if (isset($field['model']) && !isset($field['attribute']) && method_exists($field['model'], 'identifiableAttribute')) {
173 173
             $field['attribute'] = call_user_func([(new $field['model']), 'identifiableAttribute']);
174 174
         }
175 175
 
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
      */
186 186
     protected function makeSureFieldHasLabel($field)
187 187
     {
188
-        if (! isset($field['label'])) {
188
+        if (!isset($field['label'])) {
189 189
             $name = is_array($field['name']) ? $field['name'][0] : $field['name'];
190 190
             $name = str_replace('_id', '', $name);
191 191
             $field['label'] = mb_ucfirst(str_replace('_', ' ', $name));
@@ -203,7 +203,7 @@  discard block
 block discarded – undo
203 203
      */
204 204
     protected function makeSureFieldHasType($field)
205 205
     {
206
-        if (! isset($field['type'])) {
206
+        if (!isset($field['type'])) {
207 207
             $field['type'] = isset($field['relation_type']) ? $this->inferFieldTypeFromFieldRelation($field) : $this->inferFieldTypeFromDbColumnType($field['name']);
208 208
         }
209 209
 
@@ -220,7 +220,7 @@  discard block
 block discarded – undo
220 220
     {
221 221
         // if a tab was mentioned, we should enable it
222 222
         if (isset($field['tab'])) {
223
-            if (! $this->tabsEnabled()) {
223
+            if (!$this->tabsEnabled()) {
224 224
                 $this->enableTabs();
225 225
             }
226 226
         }
Please login to merge, or discard this patch.
src/app/Library/CrudPanel/Traits/Create.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
     {
84 84
         $all_relation_fields = $this->getRelationFields();
85 85
 
86
-        return Arr::where($all_relation_fields, function ($value, $key) {
86
+        return Arr::where($all_relation_fields, function($value, $key) {
87 87
             return isset($value['pivot']) && $value['pivot'];
88 88
         });
89 89
     }
@@ -161,11 +161,11 @@  discard block
 block discarded – undo
161 161
      */
162 162
     private function createRelationsForItem($item, $formattedData)
163 163
     {
164
-        if (! isset($formattedData['relations'])) {
164
+        if (!isset($formattedData['relations'])) {
165 165
             return false;
166 166
         }
167 167
         foreach ($formattedData['relations'] as $relationMethod => $relationData) {
168
-            if (! isset($relationData['model'])) {
168
+            if (!isset($relationData['model'])) {
169 169
                 continue;
170 170
             }
171 171
             $model = $relationData['model'];
@@ -218,13 +218,13 @@  discard block
 block discarded – undo
218 218
         foreach ($relation_fields as $relation_field) {
219 219
             $attributeKey = $relation_field['name'];
220 220
 
221
-            if (! is_null(Arr::get($data, $attributeKey)) && isset($relation_field['pivot']) && $relation_field['pivot'] !== true) {
221
+            if (!is_null(Arr::get($data, $attributeKey)) && isset($relation_field['pivot']) && $relation_field['pivot'] !== true) {
222 222
                 $key = implode('.relations.', explode('.', $this->getOnlyRelationEntity($relation_field)));
223 223
                 $fieldData = Arr::get($relationData, 'relations.'.$key, []);
224
-                if (! array_key_exists('model', $fieldData)) {
224
+                if (!array_key_exists('model', $fieldData)) {
225 225
                     $fieldData['model'] = $relation_field['model'];
226 226
                 }
227
-                if (! array_key_exists('parent', $fieldData)) {
227
+                if (!array_key_exists('parent', $fieldData)) {
228 228
                     $fieldData['parent'] = $this->getRelationModel($attributeKey, -1);
229 229
                 }
230 230
                 $relatedAttribute = Arr::last(explode('.', $attributeKey));
Please login to merge, or discard this patch.