Passed
Pull Request — 1.2 (#405)
by
unknown
08:49
created
src/Models/Behaviors/HasRevisions.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,14 +11,14 @@
 block discarded – undo
11 11
 
12 12
     public function scopeMine($query)
13 13
     {
14
-        return $query->whereHas('revisions', function ($query) {
14
+        return $query->whereHas('revisions', function($query) {
15 15
             $query->where('user_id', auth('twill_users')->user()->id);
16 16
         });
17 17
     }
18 18
 
19 19
     public function revisionsArray()
20 20
     {
21
-        return $this->revisions->map(function ($revision) {
21
+        return $this->revisions->map(function($revision) {
22 22
             return [
23 23
                 'id' => $revision->id,
24 24
                 'author' => $revision->user->name ?? 'Unknown',
Please login to merge, or discard this patch.
src/Models/Behaviors/HasMedias.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
 
34 34
     private function findMedia($role, $crop = "default")
35 35
     {
36
-        $media = $this->medias->first(function ($media) use ($role, $crop) {
36
+        $media = $this->medias->first(function($media) use ($role, $crop) {
37 37
             if (config('twill.media_library.translated_form_fields', false)) {
38 38
                 $localeScope = $media->pivot->locale === app()->getLocale();
39 39
             }
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
         });
43 43
 
44 44
         if (!$media && config('twill.media_library.translated_form_fields', false)) {
45
-            $media = $this->medias->first(function ($media) use ($role, $crop) {
45
+            $media = $this->medias->first(function($media) use ($role, $crop) {
46 46
                 return $media->pivot->role === $role && $media->pivot->crop === $crop;
47 47
             });
48 48
         }
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
 
86 86
     public function images($role, $crop = "default", $params = [])
87 87
     {
88
-        $medias = $this->medias->filter(function ($media) use ($role, $crop) {
88
+        $medias = $this->medias->filter(function($media) use ($role, $crop) {
89 89
             return $media->pivot->role === $role && $media->pivot->crop === $crop;
90 90
         });
91 91
 
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
 
121 121
     public function imagesAsArrays($role, $crop = "default", $params = [])
122 122
     {
123
-        $medias = $this->medias->filter(function ($media) use ($role, $crop) {
123
+        $medias = $this->medias->filter(function($media) use ($role, $crop) {
124 124
             return $media->pivot->role === $role && $media->pivot->crop === $crop;
125 125
         });
126 126
 
@@ -136,12 +136,12 @@  discard block
 block discarded – undo
136 136
     public function imageAltText($role, $media = null)
137 137
     {
138 138
         if (!$media) {
139
-            $media = $this->medias->first(function ($media) use ($role) {
139
+            $media = $this->medias->first(function($media) use ($role) {
140 140
                 if (config('twill.media_library.translated_form_fields', false)) {
141 141
                     $localeScope = $media->pivot->locale === app()->getLocale();
142 142
                 }
143 143
 
144
-                return $media->pivot->role === $role && ($localeScope ?? true);;
144
+                return $media->pivot->role === $role && ($localeScope ?? true); ;
145 145
             });
146 146
         }
147 147
 
@@ -155,12 +155,12 @@  discard block
 block discarded – undo
155 155
     public function imageCaption($role, $media = null)
156 156
     {
157 157
         if (!$media) {
158
-            $media = $this->medias->first(function ($media) use ($role) {
158
+            $media = $this->medias->first(function($media) use ($role) {
159 159
                 if (config('twill.media_library.translated_form_fields', false)) {
160 160
                     $localeScope = $media->pivot->locale === app()->getLocale();
161 161
                 }
162 162
 
163
-                return $media->pivot->role === $role && ($localeScope ?? true);;
163
+                return $media->pivot->role === $role && ($localeScope ?? true); ;
164 164
             });
165 165
         }
166 166
 
@@ -174,12 +174,12 @@  discard block
 block discarded – undo
174 174
     public function imageVideo($role, $media = null)
175 175
     {
176 176
         if (!$media) {
177
-            $media = $this->medias->first(function ($media) use ($role) {
177
+            $media = $this->medias->first(function($media) use ($role) {
178 178
                 if (config('twill.media_library.translated_form_fields', false)) {
179 179
                     $localeScope = $media->pivot->locale === app()->getLocale();
180 180
                 }
181 181
 
182
-                return $media->pivot->role === $role && ($localeScope ?? true);;
182
+                return $media->pivot->role === $role && ($localeScope ?? true); ;
183 183
             });
184 184
         }
185 185
 
@@ -248,7 +248,7 @@  discard block
 block discarded – undo
248 248
 
249 249
     public function imageObjects($role, $crop = "default")
250 250
     {
251
-        return $this->medias->filter(function ($media) use ($role, $crop) {
251
+        return $this->medias->filter(function($media) use ($role, $crop) {
252 252
             return $media->pivot->role === $role && $media->pivot->crop === $crop;
253 253
         });
254 254
     }
Please login to merge, or discard this patch.
src/Models/Behaviors/HasFiles.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -16,12 +16,12 @@  discard block
 block discarded – undo
16 16
     {
17 17
         $locale = $locale ?? app()->getLocale();
18 18
 
19
-        $file = $this->files->first(function ($file) use ($role, $locale) {
19
+        $file = $this->files->first(function($file) use ($role, $locale) {
20 20
             return $file->pivot->role === $role && $file->pivot->locale === $locale;
21 21
         });
22 22
 
23 23
         if (!$file && config('translatable.use_property_fallback', false)) {
24
-            $file = $this->files->first(function ($file) use ($role) {
24
+            $file = $this->files->first(function($file) use ($role) {
25 25
                 return $file->pivot->role === $role && $file->pivot->locale === config('translatable.fallback_locale');
26 26
             });
27 27
         }
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
     {
48 48
         $locale = $locale ?? app()->getLocale();
49 49
 
50
-        $files = $this->files->filter(function ($file) use ($role, $locale) {
50
+        $files = $this->files->filter(function($file) use ($role, $locale) {
51 51
             return $file->pivot->role === $role && $file->pivot->locale === $locale;
52 52
         });
53 53
 
Please login to merge, or discard this patch.
src/Models/Behaviors/HasRelated.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
 
32 32
         return $this->relatedCache[$browser_name] = $this->relatedItems
33 33
             ->where('browser_name', $browser_name)
34
-            ->map(function ($item) {
34
+            ->map(function($item) {
35 35
                 return $item->related;
36 36
             });
37 37
     }
@@ -46,9 +46,9 @@  discard block
 block discarded – undo
46 46
 
47 47
         $position = 1;
48 48
 
49
-        Collection::make($items)->map(function ($item) {
49
+        Collection::make($items)->map(function($item) {
50 50
             return Arr::only($item, ['endpointType', 'id']);
51
-        })->each(function ($values) use ($browser_name, &$position) {
51
+        })->each(function($values) use ($browser_name, &$position) {
52 52
             RelatedItem::create([
53 53
                 'subject_id' => $this->getKey(),
54 54
                 'subject_type' => $this->getMorphClass(),
Please login to merge, or discard this patch.
src/Models/Feature.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
 
22 22
     public function scopeForBucket($query, $bucketKey)
23 23
     {
24
-        return $query->where('bucket_key', $bucketKey)->get()->map(function ($feature) {
24
+        return $query->where('bucket_key', $bucketKey)->get()->map(function($feature) {
25 25
             return $feature->featured;
26 26
         })->filter();
27 27
     }
Please login to merge, or discard this patch.
src/TwillServiceProvider.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -109,13 +109,13 @@  discard block
 block discarded – undo
109 109
         }
110 110
 
111 111
         if (config('twill.enabled.media-library')) {
112
-            $this->app->singleton('imageService', function () {
112
+            $this->app->singleton('imageService', function() {
113 113
                 return $this->app->make(config('twill.media_library.image_service'));
114 114
             });
115 115
         }
116 116
 
117 117
         if (config('twill.enabled.file-library')) {
118
-            $this->app->singleton('fileService', function () {
118
+            $this->app->singleton('fileService', function() {
119 119
                 return $this->app->make(config('twill.file_library.file_service'));
120 120
             });
121 121
         }
@@ -343,20 +343,20 @@  discard block
 block discarded – undo
343 343
     {
344 344
         $blade = $this->app['view']->getEngineResolver()->resolve('blade')->getCompiler();
345 345
 
346
-        $blade->directive('dd', function ($param) {
346
+        $blade->directive('dd', function($param) {
347 347
             return "<?php dd({$param}); ?>";
348 348
         });
349 349
 
350
-        $blade->directive('dumpData', function ($data) {
350
+        $blade->directive('dumpData', function($data) {
351 351
             return sprintf("<?php (new Symfony\Component\VarDumper\VarDumper)->dump(%s); exit; ?>",
352 352
                 null != $data ? $data : "get_defined_vars()");
353 353
         });
354 354
 
355
-        $blade->directive('formField', function ($expression) use ($blade) {
355
+        $blade->directive('formField', function($expression) use ($blade) {
356 356
             return $this->includeView('partials.form._', $expression);
357 357
         });
358 358
 
359
-        $blade->directive('partialView', function ($expression) use ($blade) {
359
+        $blade->directive('partialView', function($expression) use ($blade) {
360 360
 
361 361
             $expressionAsArray = str_getcsv($expression, ',', '\'');
362 362
 
@@ -392,13 +392,13 @@  discard block
 block discarded – undo
392 392
             ?>";
393 393
         });
394 394
 
395
-        $blade->directive('pushonce', function ($expression) {
395
+        $blade->directive('pushonce', function($expression) {
396 396
             list($pushName, $pushSub) = explode(':', trim(substr($expression, 1, -1)));
397 397
             $key = '__pushonce_' . $pushName . '_' . str_replace('-', '_', $pushSub);
398 398
             return "<?php if(! isset(\$__env->{$key})): \$__env->{$key} = 1; \$__env->startPush('{$pushName}'); ?>";
399 399
         });
400 400
 
401
-        $blade->directive('endpushonce', function () {
401
+        $blade->directive('endpushonce', function() {
402 402
             return '<?php $__env->stopPush(); endif; ?>';
403 403
         });
404 404
     }
@@ -424,7 +424,7 @@  discard block
 block discarded – undo
424 424
 
425 425
         View::composer('twill::partials.navigation.*', ActiveNavigation::class);
426 426
 
427
-        View::composer(['admin.*', 'templates.*', 'twill::*'], function ($view) {
427
+        View::composer(['admin.*', 'templates.*', 'twill::*'], function($view) {
428 428
             $with = array_merge([
429 429
                 'renderForBlocks' => false,
430 430
                 'renderForModal' => false,
Please login to merge, or discard this patch.
src/Http/Controllers/Admin/FeaturedController.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
 
43 43
         $featuredSources = $this->getFeaturedSources($request, $featuredSection, $filters['search'] ?? '');
44 44
 
45
-        $contentTypes = Collection::make($featuredSources)->map(function ($source, $sourceKey) {
45
+        $contentTypes = Collection::make($featuredSources)->map(function($source, $sourceKey) {
46 46
             return [
47 47
                 'label' => $source['name'],
48 48
                 'value' => $sourceKey,
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
 
55 55
             return [
56 56
                 'source' => [
57
-                    'content_type' => Arr::first($contentTypes, function ($contentTypeItem) use ($request) {
57
+                    'content_type' => Arr::first($contentTypes, function($contentTypeItem) use ($request) {
58 58
                         return $contentTypeItem['value'] == $request->get('content_type');
59 59
                     }),
60 60
                     'items' => $source['items'],
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
     private function getFeaturedItemsByBucket($featuredSection, $featuredSectionKey)
100 100
     {
101 101
         $bucketRouteConfig = $this->config->get('twill.bucketsRoutes') ?? [$featuredSectionKey => 'featured'];
102
-        return Collection::make($featuredSection['buckets'])->map(function ($bucket, $bucketKey) use ($featuredSectionKey, $bucketRouteConfig) {
102
+        return Collection::make($featuredSection['buckets'])->map(function($bucket, $bucketKey) use ($featuredSectionKey, $bucketRouteConfig) {
103 103
             $routePrefix = $bucketRouteConfig[$featuredSectionKey];
104 104
             return [
105 105
                 'id' => $bucketKey,
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
                 'acceptedSources' => Collection::make($bucket['bucketables'])->pluck('module'),
109 109
                 'withToggleFeatured' => $bucket['with_starred_items'] ?? false,
110 110
                 'toggleFeaturedLabels' => $bucket['starred_items_labels'] ?? [],
111
-                'children' => Feature::where('bucket_key', $bucketKey)->with('featured')->get()->map(function ($feature) {
111
+                'children' => Feature::where('bucket_key', $bucketKey)->with('featured')->get()->map(function($feature) {
112 112
                     if (($item = $feature->featured) != null) {
113 113
                         $repository = $this->getRepository($feature->featured_type);
114 114
                         $withImage = classHasTrait($repository, HandleMedias::class);
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
                             'thumbnail' => $item->defaultCmsImage(['w' => 100, 'h' => 100]),
127 127
                         ] : []);
128 128
                     }
129
-                })->reject(function ($item) {
129
+                })->reject(function($item) {
130 130
                     return is_null($item);
131 131
                 })->values()->toArray(),
132 132
             ];
@@ -144,8 +144,8 @@  discard block
 block discarded – undo
144 144
         $fetchedModules = [];
145 145
         $featuredSources = [];
146 146
 
147
-        Collection::make($featuredSection['buckets'])->map(function ($bucket, $bucketKey) use (&$fetchedModules, $search, $request) {
148
-            return Collection::make($bucket['bucketables'])->mapWithKeys(function ($bucketable) use (&$fetchedModules, $bucketKey, $search, $request) {
147
+        Collection::make($featuredSection['buckets'])->map(function($bucket, $bucketKey) use (&$fetchedModules, $search, $request) {
148
+            return Collection::make($bucket['bucketables'])->mapWithKeys(function($bucketable) use (&$fetchedModules, $bucketKey, $search, $request) {
149 149
 
150 150
                 $module = $bucketable['module'];
151 151
                 $repository = $this->getRepository($module);
@@ -174,12 +174,12 @@  discard block
 block discarded – undo
174 174
                     'withImage' => $withImage,
175 175
                 ]];
176 176
             });
177
-        })->each(function ($bucketables, $bucket) use (&$featuredSources) {
178
-            $bucketables->each(function ($bucketableData, $bucketable) use ($bucket, &$featuredSources) {
177
+        })->each(function($bucketables, $bucket) use (&$featuredSources) {
178
+            $bucketables->each(function($bucketableData, $bucketable) use ($bucket, &$featuredSources) {
179 179
                 $featuredSources[$bucketable]['name'] = $bucketableData['name'];
180 180
                 $featuredSources[$bucketable]['maxPage'] = $bucketableData['items']->lastPage();
181 181
                 $featuredSources[$bucketable]['offset'] = $bucketableData['items']->perPage();
182
-                $featuredSources[$bucketable]['items'] = $bucketableData['items']->map(function ($item) use ($bucketableData, $bucketable) {
182
+                $featuredSources[$bucketable]['items'] = $bucketableData['items']->map(function($item) use ($bucketableData, $bucketable) {
183 183
                     return [
184 184
                         'id' => $item->id,
185 185
                         'name' => $item->titleInBucket ?? $item->title,
@@ -208,8 +208,8 @@  discard block
 block discarded – undo
208 208
      */
209 209
     public function save(Request $request, DB $db)
210 210
     {
211
-        $db->transaction(function () use ($request) {
212
-            Collection::make($request->get('buckets'))->each(function ($bucketables, $bucketKey) {
211
+        $db->transaction(function() use ($request) {
212
+            Collection::make($request->get('buckets'))->each(function($bucketables, $bucketKey) {
213 213
                 Feature::where('bucket_key', $bucketKey)->delete();
214 214
                 foreach (($bucketables ?? []) as $position => $bucketable) {
215 215
                     Feature::create([
Please login to merge, or discard this patch.
src/Http/Controllers/Admin/ModuleController.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -259,7 +259,7 @@  discard block
 block discarded – undo
259 259
             "$this->viewPrefix.index",
260 260
             "twill::$this->moduleName.index",
261 261
             "twill::layouts.listing",
262
-        ])->first(function ($view) {
262
+        ])->first(function($view) {
263 263
             return View::exists($view);
264 264
         });
265 265
 
@@ -339,7 +339,7 @@  discard block
 block discarded – undo
339 339
             "$this->viewPrefix.form",
340 340
             "twill::$this->moduleName.form",
341 341
             "twill::layouts.form",
342
-        ])->first(function ($view) {
342
+        ])->first(function($view) {
343 343
             return View::exists($view);
344 344
         });
345 345
 
@@ -455,7 +455,7 @@  discard block
 block discarded – undo
455 455
             "$this->viewPrefix.form",
456 456
             "twill::$this->moduleName.form",
457 457
             "twill::layouts.form",
458
-        ])->first(function ($view) {
458
+        ])->first(function($view) {
459 459
             return View::exists($view);
460 460
         });
461 461
 
@@ -648,7 +648,7 @@  discard block
 block discarded – undo
648 648
         $query = $this->request->input('q');
649 649
         $tags = $this->repository->getTags($query);
650 650
 
651
-        return Response::json(['items' => $tags->map(function ($tag) {
651
+        return Response::json(['items' => $tags->map(function($tag) {
652 652
             return $tag->name;
653 653
         })], 200);
654 654
     }
@@ -732,8 +732,8 @@  discard block
 block discarded – undo
732 732
     protected function getIndexTableData($items)
733 733
     {
734 734
         $translated = $this->moduleHas('translations');
735
-        return $items->map(function ($item) use ($translated) {
736
-            $columnsData = Collection::make($this->indexColumns)->mapWithKeys(function ($column) use ($item) {
735
+        return $items->map(function($item) use ($translated) {
736
+            $columnsData = Collection::make($this->indexColumns)->mapWithKeys(function($column) use ($item) {
737 737
                 return $this->getItemColumnData($item, $column);
738 738
             })->toArray();
739 739
 
@@ -986,7 +986,7 @@  discard block
 block discarded – undo
986 986
             'feature',
987 987
             'bulkFeature',
988 988
             'bulkDelete',
989
-        ])->mapWithKeys(function ($endpoint) use ($moduleName, $routePrefix) {
989
+        ])->mapWithKeys(function($endpoint) use ($moduleName, $routePrefix) {
990 990
             return [
991 991
                 $endpoint . 'Url' => $this->getIndexOption($endpoint) ? moduleRoute(
992 992
                     $this->moduleName, $this->routePrefix, $endpoint,
@@ -1002,7 +1002,7 @@  discard block
 block discarded – undo
1002 1002
      */
1003 1003
     protected function getIndexOption($option)
1004 1004
     {
1005
-        return once(function () use ($option) {
1005
+        return once(function() use ($option) {
1006 1006
             $customOptionNamesMapping = [
1007 1007
                 'store' => 'create',
1008 1008
             ];
@@ -1055,8 +1055,8 @@  discard block
 block discarded – undo
1055 1055
     {
1056 1056
         $withImage = $this->moduleHas('medias');
1057 1057
 
1058
-        return $items->map(function ($item) use ($withImage) {
1059
-            $columnsData = Collection::make($this->browserColumns)->mapWithKeys(function ($column) use ($item, $withImage) {
1058
+        return $items->map(function($item) use ($withImage) {
1059
+            $columnsData = Collection::make($this->browserColumns)->mapWithKeys(function($column) use ($item, $withImage) {
1060 1060
                 return $this->getItemColumnData($item, $column);
1061 1061
             })->toArray();
1062 1062
 
@@ -1122,7 +1122,7 @@  discard block
 block discarded – undo
1122 1122
                     $fieldSplitted = explode('|', $field);
1123 1123
                     if (count($fieldSplitted) > 1) {
1124 1124
                         $requestValue = $requestFilters[$key];
1125
-                        Collection::make($fieldSplitted)->each(function ($scopeKey) use (&$scope, $requestValue) {
1125
+                        Collection::make($fieldSplitted)->each(function($scopeKey) use (&$scope, $requestValue) {
1126 1126
                             $scope[$scopeKey] = $requestValue;
1127 1127
                         });
1128 1128
                     } else {
@@ -1200,7 +1200,7 @@  discard block
 block discarded – undo
1200 1200
             'permalinkPrefix' => $this->getPermalinkPrefix($baseUrl),
1201 1201
             'saveUrl' => $this->getModuleRoute($item->id, 'update'),
1202 1202
             'editor' => $this->moduleHas('revisions') && $this->moduleHas('blocks') && !$this->disableEditor,
1203
-            'blockPreviewUrl' => Route::has('admin.blocks.preview')? URL::route('admin.blocks.preview') : '#',
1203
+            'blockPreviewUrl' => Route::has('admin.blocks.preview') ? URL::route('admin.blocks.preview') : '#',
1204 1204
             'revisions' => $this->moduleHas('revisions') ? $item->revisionsArray() : null,
1205 1205
         ] + (Route::has($previewRouteName) ? [
1206 1206
             'previewUrl' => moduleRoute($this->moduleName, $this->routePrefix, 'preview', $item->id),
@@ -1268,11 +1268,11 @@  discard block
 block discarded – undo
1268 1268
      */
1269 1269
     protected function validateFormRequest()
1270 1270
     {
1271
-        $unauthorizedFields = Collection::make($this->fieldsPermissions)->filter(function ($permission, $field) {
1271
+        $unauthorizedFields = Collection::make($this->fieldsPermissions)->filter(function($permission, $field) {
1272 1272
             return Auth::guard('twill_users')->user()->cannot($permission);
1273 1273
         })->keys();
1274 1274
 
1275
-        $unauthorizedFields->each(function ($field) {
1275
+        $unauthorizedFields->each(function($field) {
1276 1276
             $this->request->offsetUnset($field);
1277 1277
         });
1278 1278
 
Please login to merge, or discard this patch.
src/Http/Controllers/Admin/BlocksController.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -56,16 +56,16 @@
 block discarded – undo
56 56
 
57 57
         $blocksCollection->push($newBlock);
58 58
 
59
-        $block['blocks']->each(function ($childBlock) use ($newBlock, $blocksCollection, $blockRepository) {
59
+        $block['blocks']->each(function($childBlock) use ($newBlock, $blocksCollection, $blockRepository) {
60 60
             $childBlock['parent_id'] = $newBlock->id;
61 61
             $newChildBlock = $blockRepository->createForPreview($childBlock);
62 62
             $blocksCollection->push($newChildBlock);
63 63
         });
64 64
 
65
-        $renderedBlocks = $blocksCollection->where('parent_id', null)->map(function ($block) use ($blocksCollection, $viewFactory, $config) {
65
+        $renderedBlocks = $blocksCollection->where('parent_id', null)->map(function($block) use ($blocksCollection, $viewFactory, $config) {
66 66
             if ($config->get('twill.block_editor.block_preview_render_childs') ?? true) {
67 67
                 $childBlocks = $blocksCollection->where('parent_id', $block->id);
68
-                $renderedChildViews = $childBlocks->map(function ($childBlock) use ($viewFactory, $config) {
68
+                $renderedChildViews = $childBlocks->map(function($childBlock) use ($viewFactory, $config) {
69 69
                     $view = $this->getBlockView($childBlock->type, $config);
70 70
 
71 71
                     return $viewFactory->exists($view) ? $viewFactory->make($view, [
Please login to merge, or discard this patch.