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

Passed
Pull Request — main (#5687)
by Pedro
14:53
created
src/app/Library/CrudPanel/Traits/Relationships.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
             // here we are going to iterate through all relation parts to check
25 25
             foreach ($parts as $i => $part) {
26 26
                 $relation = $model->$part();
27
-                if (! is_a($relation, \Illuminate\Database\Eloquent\Relations\Relation::class, true)) {
27
+                if (!is_a($relation, \Illuminate\Database\Eloquent\Relations\Relation::class, true)) {
28 28
                     return $model;
29 29
                 }
30 30
                 $model = $relation->getRelated();
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
         $model = new ($this->getRelationModel($entity, -1));
69 69
         $lastSegmentAfterDot = Str::of($field['entity'])->afterLast('.')->value();
70 70
 
71
-        if (! $this->modelMethodIsRelationship($model, $lastSegmentAfterDot)) {
71
+        if (!$this->modelMethodIsRelationship($model, $lastSegmentAfterDot)) {
72 72
             return (string) Str::of($field['entity'])->beforeLast('.');
73 73
         }
74 74
 
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
 
90 90
         return collect($this->getCleanStateFields())
91 91
             ->whereIn('relation_type', $relation_types)
92
-            ->filter(function ($item) use ($nested) {
92
+            ->filter(function($item) use ($nested) {
93 93
                 if ($nested) {
94 94
                     return true;
95 95
                 }
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
      */
134 134
     private function getRelationFieldsWithoutRelationType($relations, $fields = [])
135 135
     {
136
-        if (! is_array($relations)) {
136
+        if (!is_array($relations)) {
137 137
             $relations = [$relations];
138 138
         }
139 139
 
@@ -142,8 +142,8 @@  discard block
 block discarded – undo
142 142
         }
143 143
 
144 144
         foreach ($relations as $relation) {
145
-            $fields = array_filter($fields, function ($field) use ($relation) {
146
-                if (! isset($field['relation_type'])) {
145
+            $fields = array_filter($fields, function($field) use ($relation) {
146
+                if (!isset($field['relation_type'])) {
147 147
                     return false;
148 148
                 }
149 149
 
@@ -177,7 +177,7 @@  discard block
 block discarded – undo
177 177
                     $fields = array_merge($field['subfields'], $fields);
178 178
                 }
179 179
             }
180
-            $fields = array_filter($fields, function ($field) {
180
+            $fields = array_filter($fields, function($field) {
181 181
                 return isset($field['relation_type']) && $field['relation_type'] === 'BelongsTo';
182 182
             });
183 183
         }
@@ -244,8 +244,8 @@  discard block
 block discarded – undo
244 244
     {
245 245
         $all_relation_fields = $this->getRelationFields();
246 246
 
247
-        return Arr::where($all_relation_fields, function ($value, $key) {
248
-            return isset($value['pivot']) && ! $value['pivot'];
247
+        return Arr::where($all_relation_fields, function($value, $key) {
248
+            return isset($value['pivot']) && !$value['pivot'];
249 249
         });
250 250
     }
251 251
 
@@ -258,7 +258,7 @@  discard block
 block discarded – undo
258 258
     {
259 259
         $all_relation_fields = $this->getRelationFields();
260 260
 
261
-        return Arr::where($all_relation_fields, function ($value, $key) {
261
+        return Arr::where($all_relation_fields, function($value, $key) {
262 262
             return isset($value['pivot']) && $value['pivot'];
263 263
         });
264 264
     }
@@ -328,7 +328,7 @@  discard block
 block discarded – undo
328 328
      */
329 329
     private function modelMethodIsRelationship($model, $method)
330 330
     {
331
-        if (! method_exists($model, $method)) {
331
+        if (!method_exists($model, $method)) {
332 332
             if ($model->isRelation($method)) {
333 333
                 return $method;
334 334
             }
@@ -344,7 +344,7 @@  discard block
 block discarded – undo
344 344
         }
345 345
 
346 346
         // relationships are always public methods.
347
-        if (! $methodReflection->isPublic()) {
347
+        if (!$methodReflection->isPublic()) {
348 348
             return false;
349 349
         }
350 350
 
@@ -371,7 +371,7 @@  discard block
 block discarded – undo
371 371
      */
372 372
     public function isAttributeInRelationString(array $field): bool
373 373
     {
374
-        if (! str_contains($field['entity'], '.')) {
374
+        if (!str_contains($field['entity'], '.')) {
375 375
             return false;
376 376
         }
377 377
 
@@ -387,7 +387,7 @@  discard block
 block discarded – undo
387 387
             try {
388 388
                 $model = $model->$part();
389 389
 
390
-                if (! is_a($model, \Illuminate\Database\Eloquent\Relations\Relation::class, true)) {
390
+                if (!is_a($model, \Illuminate\Database\Eloquent\Relations\Relation::class, true)) {
391 391
                     return true;
392 392
                 }
393 393
 
Please login to merge, or discard this patch.
src/resources/views/crud/fields/checklist_dependency.blade.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
     //all items with relation
21 21
     $dependencies = $primary_dependency['model']::with($primary_dependency['entity_secondary']);
22 22
 
23
-    if(isset($primary_dependency['options']) && $primary_dependency['options'] instanceof \Closure){
23
+    if (isset($primary_dependency['options']) && $primary_dependency['options'] instanceof \Closure) {
24 24
         $dependencies = $primary_dependency['options']($dependencies);
25 25
     }
26 26
 
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
 
77 77
     $primaryDependencyOptionQuery = $primary_dependency['model']::query();
78 78
 
79
-    if(isset($primary_dependency['options']) && $primary_dependency['options'] instanceof \Closure){
79
+    if (isset($primary_dependency['options']) && $primary_dependency['options'] instanceof \Closure) {
80 80
         $primaryDependencyOptionQuery = $primary_dependency['options']($primaryDependencyOptionQuery);
81 81
     }
82 82
 
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
 
85 85
     $secondaryDependencyOptionQuery = $secondary_dependency['model']::query();
86 86
 
87
-    if(isset($secondary_dependency['options']) && $secondary_dependency['options'] instanceof \Closure){
87
+    if (isset($secondary_dependency['options']) && $secondary_dependency['options'] instanceof \Closure) {
88 88
         $secondaryDependencyOptionQuery = $secondary_dependency['options']($secondaryDependencyOptionQuery);
89 89
     }
90 90
 
Please login to merge, or discard this patch.
src/app/Http/Controllers/Operations/ReorderOperation.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
         $this->crud->set('reorder.enabled', true);
37 37
         $this->crud->allowAccess('reorder');
38 38
 
39
-        $this->crud->operation('reorder', function () {
39
+        $this->crud->operation('reorder', function() {
40 40
             $this->crud->loadDefaultOperationSettingsFromConfig();
41 41
             $this->crud->setOperationSetting('reorderColumnNames', [
42 42
                 'parent_id' => 'parent_id',
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
             ]);
47 47
         });
48 48
 
49
-        $this->crud->operation('list', function () {
49
+        $this->crud->operation('list', function() {
50 50
             $this->crud->addButton('top', 'reorder', 'view', 'crud::buttons.reorder');
51 51
         });
52 52
     }
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
     {
63 63
         $this->crud->hasAccessOrFail('reorder');
64 64
 
65
-        if (! $this->crud->isReorderEnabled()) {
65
+        if (!$this->crud->isReorderEnabled()) {
66 66
             abort(403, 'Reorder is disabled.');
67 67
         }
68 68
 
Please login to merge, or discard this patch.
src/resources/views/crud/reorder.blade.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -27,11 +27,11 @@  discard block
 block discarded – undo
27 27
 
28 28
 @section('content')
29 29
 <?php
30
-if(!function_exists('tree_element')) {
30
+if (!function_exists('tree_element')) {
31 31
     function tree_element($entry, $key, $all_entries, $crud) {
32 32
         $columns = $crud->getOperationSetting('reorderColumnNames');
33 33
 
34
-        if (! isset($entry->tree_element_shown)) {
34
+        if (!isset($entry->tree_element_shown)) {
35 35
             // mark the element as shown
36 36
             $all_entries[$key]->tree_element_shown = true;
37 37
             $entry->tree_element_shown = true;
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
                 <ol class="sortable mt-0 mb-0">
76 76
                 <?php
77 77
                     $all_entries = collect($entries->all())->sortBy($columns['lft'])->keyBy($crud->getModel()->getKeyName());
78
-                    $root_entries = $all_entries->filter(function ($item) use ($columns) {
78
+                    $root_entries = $all_entries->filter(function($item) use ($columns) {
79 79
                         return $item->{$columns['parent_id']} == 0;
80 80
                     });
81 81
                     foreach ($root_entries as $key => $entry) {
Please login to merge, or discard this patch.
src/app/Library/CrudPanel/Traits/Reorder.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -28,9 +28,9 @@  discard block
 block discarded – undo
28 28
         $itemKeys = $this->model->query()->select($primaryKey)->get()->pluck($primaryKey);
29 29
 
30 30
         // filter the items that are not in the database and map the request
31
-        $reorderItems = collect($request)->filter(function ($item) use ($itemKeys) {
31
+        $reorderItems = collect($request)->filter(function($item) use ($itemKeys) {
32 32
             return $item['item_id'] !== '' && $item['item_id'] !== null && $itemKeys->contains($item['item_id']);
33
-        })->map(function ($item) use ($primaryKey, $columns) {
33
+        })->map(function($item) use ($primaryKey, $columns) {
34 34
             $item[$primaryKey] = $item['item_id'];
35 35
             $item[$columns['parent_id']] = empty($item['parent_id']) ? null : $item['parent_id'];
36 36
             $item[$columns['depth']] = empty($item['depth']) ? null : (int) $item['depth'];
@@ -59,12 +59,12 @@  discard block
 block discarded – undo
59 59
 
60 60
         $sentIds = array_column($reorderItems, $primaryKey);
61 61
 
62
-        $itemKeys = $itemKeys->filter(function ($id) use ($sentIds) {
62
+        $itemKeys = $itemKeys->filter(function($id) use ($sentIds) {
63 63
             return in_array($id, $sentIds);
64 64
         });
65 65
 
66 66
         // wrap the queries in a transaction to avoid partial updates
67
-        DB::connection($this->model->getConnectionName())->transaction(function () use ($reorderItems, $primaryKey, $itemKeys, $columns) {
67
+        DB::connection($this->model->getConnectionName())->transaction(function() use ($reorderItems, $primaryKey, $itemKeys, $columns) {
68 68
             // create a string of ?,?,?,? to use as bind placeholders for item keys
69 69
             $reorderItemsBindString = implode(',', array_fill(0, count($reorderItems), '?'));
70 70
 
Please login to merge, or discard this patch.
tests/Unit/CrudPanel/CrudPanelFieldsTest.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -613,7 +613,7 @@  discard block
 block discarded – undo
613 613
     {
614 614
         $this->crudPanel->setOperationSetting(
615 615
             'strippedRequest',
616
-            static function (Request $request) {
616
+            static function(Request $request) {
617 617
                 return $request->toArray();
618 618
             },
619 619
             'update'
@@ -748,7 +748,7 @@  discard block
 block discarded – undo
748 748
                         ->validationMessages(['required' => 'is_required', 'min' => 'min_2'])
749 749
                         ->store_in('some')
750 750
                         ->size(6)
751
-                        ->on('created', function () {
751
+                        ->on('created', function() {
752 752
                         })
753 753
                         ->subfields([['name' => 'sub_1']])
754 754
                         ->entity('bang');
@@ -780,7 +780,7 @@  discard block
 block discarded – undo
780 780
                 'class' => 'form-group col-md-6 mb-3',
781 781
             ],
782 782
             'events' => [
783
-                'created' => function () {
783
+                'created' => function() {
784 784
                 },
785 785
             ],
786 786
             'subfields' => [
@@ -982,7 +982,7 @@  discard block
 block discarded – undo
982 982
 
983 983
     public function testItCanInferFieldAttributesFromADynamicRelation()
984 984
     {
985
-        User::resolveRelationUsing('dynamicRelation', function ($user) {
985
+        User::resolveRelationUsing('dynamicRelation', function($user) {
986 986
             return $user->hasOne(\Backpack\CRUD\Tests\config\Models\AccountDetails::class);
987 987
         });
988 988
 
Please login to merge, or discard this patch.
src/app/Library/Widget.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
         // if that widget name already exists in the widgets collection
38 38
         // then pick up all widget attributes from that entry
39 39
         // and overwrite them with the ones passed in $attributes
40
-        if ($existingItem = self::collection()->filter(function ($item) use ($attributes) {
40
+        if ($existingItem = self::collection()->filter(function($item) use ($attributes) {
41 41
             return $item->attributes['name'] === $attributes['name'];
42 42
         })->first()) {
43 43
             $attributes = array_merge($existingItem->attributes, $attributes);
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
             }
160 160
         }
161 161
         $type = $this->attributes['type'];
162
-        $paths = array_map(function ($item) use ($type) {
162
+        $paths = array_map(function($item) use ($type) {
163 163
             return $item.'.'.$type;
164 164
         }, ViewNamespaces::getWithFallbackFor('widgets', 'backpack.ui.component_view_namespaces.widgets'));
165 165
 
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
             }
170 170
         }
171 171
         // if no view exists, in any of the directories above... no bueno
172
-        if (! backpack_pro()) {
172
+        if (!backpack_pro()) {
173 173
             throw new BackpackProRequiredException('Cannot find the widget view: '.$this->attributes['type'].'. Please check for typos.'.(backpack_pro() ? '' : ' If you are trying to use a PRO widget, please first purchase and install the backpack/pro addon from backpackforlaravel.com'), 1);
174 174
         }
175 175
         abort(500, 'Cannot find the view for «'.$this->attributes['type'].'» widget type. Please check for typos.', ['developer-error-exception']);
@@ -253,10 +253,10 @@  discard block
 block discarded – undo
253 253
      */
254 254
     private function save()
255 255
     {
256
-        $itemExists = $this->collection()->filter(function ($item) {
256
+        $itemExists = $this->collection()->filter(function($item) {
257 257
             return $item->attributes['name'] === $this->attributes['name'];
258 258
         })->isNotEmpty();
259
-        if (! $itemExists) {
259
+        if (!$itemExists) {
260 260
             $this->collection()->put($this->attributes['name'], $this);
261 261
         } else {
262 262
             $this->collection()[$this->attributes['name']] = $this;
Please login to merge, or discard this patch.
src/app/Library/Uploaders/Support/RegisterUploadEvents.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -14,18 +14,18 @@  discard block
 block discarded – undo
14 14
     private string $crudObjectType;
15 15
 
16 16
     public function __construct(
17
-        private readonly CrudField|CrudColumn $crudObject,
17
+        private readonly CrudField | CrudColumn $crudObject,
18 18
         private readonly array $uploaderConfiguration,
19 19
         private readonly string $macro
20 20
         ) {
21 21
         $this->crudObjectType = is_a($crudObject, CrudField::class) ? 'field' : (is_a($crudObject, CrudColumn::class) ? 'column' : null);
22 22
 
23
-        if (! $this->crudObjectType) {
23
+        if (!$this->crudObjectType) {
24 24
             abort(500, 'Upload handlers only work for CrudField and CrudColumn classes.', ['developer-error-exception']);
25 25
         }
26 26
     }
27 27
 
28
-    public static function handle(CrudField|CrudColumn $crudObject, array $uploaderConfiguration, string $macro, ?array $subfield = null, ?bool $registerModelEvents = true): void
28
+    public static function handle(CrudField | CrudColumn $crudObject, array $uploaderConfiguration, string $macro, ?array $subfield = null, ?bool $registerModelEvents = true): void
29 29
     {
30 30
         $instance = new self($crudObject, $uploaderConfiguration, $macro);
31 31
 
@@ -35,9 +35,9 @@  discard block
 block discarded – undo
35 35
     /*******************************
36 36
      * Private methods - implementation
37 37
      *******************************/
38
-    private function registerEvents(array|null $subfield = [], ?bool $registerModelEvents = true): void
38
+    private function registerEvents(array | null $subfield = [], ?bool $registerModelEvents = true): void
39 39
     {
40
-        if (! empty($subfield)) {
40
+        if (!empty($subfield)) {
41 41
             $this->registerSubfieldEvent($subfield, $registerModelEvents);
42 42
 
43 43
             return;
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
         }
82 82
 
83 83
         $subfields = collect($this->crudObject->getAttributes()['subfields']);
84
-        $subfields = $subfields->map(function ($item) use ($subfield, $uploader) {
84
+        $subfields = $subfields->map(function($item) use ($subfield, $uploader) {
85 85
             if ($item['name'] === $subfield['name']) {
86 86
                 $item['upload'] = true;
87 87
                 $item['disk'] = $uploader->getDisk();
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
         }
112 112
 
113 113
         if ($this->crudObjectType === 'field') {
114
-            $model::saving(function ($entry) use ($uploader) {
114
+            $model::saving(function($entry) use ($uploader) {
115 115
                 $entry = $uploader->storeUploadedFiles($entry);
116 116
             });
117 117
         }
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
             // is not called in pivot models when loading the relations.
125 125
             $retrieveModel = $this->getModelForRetrieveEvent($model, $uploader);
126 126
 
127
-            $retrieveModel::retrieved(function ($entry) use ($uploader) {
127
+            $retrieveModel::retrieved(function($entry) use ($uploader) {
128 128
                 if ($entry->translationEnabled()) {
129 129
                     $locale = request('_locale', app()->getLocale());
130 130
                     if (in_array($locale, array_keys($entry->getAvailableLocales()))) {
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
             });
136 136
         }
137 137
 
138
-        $model::deleting(function ($entry) use ($uploader) {
138
+        $model::deleting(function($entry) use ($uploader) {
139 139
             $uploader->deleteUploadedFiles($entry);
140 140
         });
141 141
 
@@ -157,13 +157,13 @@  discard block
 block discarded – undo
157 157
         $customUploader = isset($uploaderConfiguration['uploader']) && class_exists($uploaderConfiguration['uploader']);
158 158
 
159 159
         if ($customUploader) {
160
-            return $uploaderConfiguration['uploader']::for($crudObject, $uploaderConfiguration);
160
+            return $uploaderConfiguration['uploader']::for ($crudObject, $uploaderConfiguration);
161 161
         }
162 162
 
163 163
         $uploader = app('UploadersRepository')->hasUploadFor($crudObject['type'], $this->macro);
164 164
 
165 165
         if ($uploader) {
166
-            return app('UploadersRepository')->getUploadFor($crudObject['type'], $this->macro)::for($crudObject, $uploaderConfiguration);
166
+            return app('UploadersRepository')->getUploadFor($crudObject['type'], $this->macro)::for ($crudObject, $uploaderConfiguration);
167 167
         }
168 168
 
169 169
         throw new Exception('Undefined upload type for '.$this->crudObjectType.' type: '.$crudObject['type']);
@@ -184,7 +184,7 @@  discard block
 block discarded – undo
184 184
 
185 185
     private function getSubfieldModel(array $subfield, UploaderInterface $uploader)
186 186
     {
187
-        if (! $uploader->isRelationship()) {
187
+        if (!$uploader->isRelationship()) {
188 188
             return $subfield['baseModel'] ?? get_class(app('crud')->getModel());
189 189
         }
190 190
 
@@ -197,7 +197,7 @@  discard block
 block discarded – undo
197 197
 
198 198
     private function getModelForRetrieveEvent(string $model, UploaderInterface $uploader)
199 199
     {
200
-        if (! $uploader->isRelationship()) {
200
+        if (!$uploader->isRelationship()) {
201 201
             return $model;
202 202
         }
203 203
 
Please login to merge, or discard this patch.
src/app/Library/CrudPanel/Traits/Filters.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
         $this->enableFilters();
73 73
 
74 74
         // check if another filter with the same name exists
75
-        if (! isset($options['name'])) {
75
+        if (!isset($options['name'])) {
76 76
             abort(500, 'All your filters need names.', ['developer-error-exception']);
77 77
         }
78 78
 
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
     {
121 121
         $unappliedFilters = $this->filters()->where('applied', false);
122 122
         if ($unappliedFilters->count()) {
123
-            $unappliedFilters->each(function ($filter) {
123
+            $unappliedFilters->each(function($filter) {
124 124
                 $filter->apply();
125 125
             });
126 126
         }
@@ -167,7 +167,7 @@  discard block
 block discarded – undo
167 167
     {
168 168
         $filter = $this->filters()->firstWhere('name', $name);
169 169
 
170
-        if (! $filter) {
170
+        if (!$filter) {
171 171
             abort(500, 'CRUD Filter "'.$name.'" not found. Please check the filter exists before you modify it.', ['developer-error-exception']);
172 172
         }
173 173
 
@@ -182,7 +182,7 @@  discard block
 block discarded – undo
182 182
 
183 183
     public function replaceFilter($name, $newFilter)
184 184
     {
185
-        $newFilters = $this->filters()->map(function ($filter, $key) use ($name, $newFilter) {
185
+        $newFilters = $this->filters()->map(function($filter, $key) use ($name, $newFilter) {
186 186
             if ($filter->name != $name) {
187 187
                 return $filter;
188 188
             }
@@ -195,7 +195,7 @@  discard block
 block discarded – undo
195 195
 
196 196
     public function removeFilter($name)
197 197
     {
198
-        $strippedCollection = $this->filters()->reject(function ($filter) use ($name) {
198
+        $strippedCollection = $this->filters()->reject(function($filter) use ($name) {
199 199
             return $filter->name == $name;
200 200
         });
201 201
 
@@ -238,7 +238,7 @@  discard block
 block discarded – undo
238 238
      */
239 239
     public function makeFirstFilter()
240 240
     {
241
-        if (! $this->filters()) {
241
+        if (!$this->filters()) {
242 242
             return false;
243 243
         }
244 244
 
@@ -268,15 +268,15 @@  discard block
 block discarded – undo
268 268
         $destinationFilter = $this->firstFilterWhere('name', $destination);
269 269
         $destinationKey = $this->getFilterKey($destination);
270 270
         $newDestinationKey = ($where == 'before' ? $destinationKey : $destinationKey + 1);
271
-        $newFilters = $this->filters()->filter(function ($value, $key) use ($target) {
271
+        $newFilters = $this->filters()->filter(function($value, $key) use ($target) {
272 272
             return $value->name != $target;
273 273
         });
274 274
 
275
-        if (! $targetFilter) {
275
+        if (!$targetFilter) {
276 276
             return;
277 277
         }
278 278
 
279
-        if (! $destinationFilter) {
279
+        if (!$destinationFilter) {
280 280
             return;
281 281
         }
282 282
 
@@ -284,7 +284,7 @@  discard block
 block discarded – undo
284 284
         $lastSlice = $newFilters->slice($newDestinationKey, null);
285 285
 
286 286
         $newFilters = $firstSlice->push($targetFilter);
287
-        $lastSlice->each(function ($item, $key) use ($newFilters) {
287
+        $lastSlice->each(function($item, $key) use ($newFilters) {
288 288
             $newFilters->push($item);
289 289
         });
290 290
 
Please login to merge, or discard this patch.