@@ -21,7 +21,7 @@ |
||
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 | } |
@@ -109,13 +109,13 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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, |
@@ -49,8 +49,8 @@ discard block |
||
49 | 49 | 'as' => 'admin.', |
50 | 50 | 'middleware' => [config('twill.admin_middleware_group', 'web')], |
51 | 51 | 'prefix' => rtrim(ltrim(config('twill.admin_app_path'), '/'), '/'), |
52 | - ], function ($router) { |
|
53 | - $router->group(['middleware' => ['twill_auth:twill_users', 'impersonate', 'validateBackHistory']], function ($router) { |
|
52 | + ], function($router) { |
|
53 | + $router->group(['middleware' => ['twill_auth:twill_users', 'impersonate', 'validateBackHistory']], function($router) { |
|
54 | 54 | require base_path('routes/admin.php'); |
55 | 55 | }); |
56 | 56 | }); |
@@ -63,16 +63,16 @@ discard block |
||
63 | 63 | 'middleware' => [config('twill.admin_middleware_group', 'web')], |
64 | 64 | 'prefix' => rtrim(ltrim(config('twill.admin_app_path'), '/'), '/'), |
65 | 65 | ], |
66 | - function ($router) { |
|
67 | - $router->group(['middleware' => ['twill_auth:twill_users', 'impersonate', 'validateBackHistory']], function ($router) { |
|
66 | + function($router) { |
|
67 | + $router->group(['middleware' => ['twill_auth:twill_users', 'impersonate', 'validateBackHistory']], function($router) { |
|
68 | 68 | require __DIR__ . '/../routes/admin.php'; |
69 | 69 | }); |
70 | 70 | |
71 | - $router->group([], function ($router) { |
|
71 | + $router->group([], function($router) { |
|
72 | 72 | require __DIR__ . '/../routes/auth.php'; |
73 | 73 | }); |
74 | 74 | |
75 | - $router->group(['middleware' => $this->app->environment('production') ? ['twill_auth:twill_users'] : []], function ($router) { |
|
75 | + $router->group(['middleware' => $this->app->environment('production') ? ['twill_auth:twill_users'] : []], function($router) { |
|
76 | 76 | require __DIR__ . '/../routes/templates.php'; |
77 | 77 | }); |
78 | 78 | } |
@@ -84,8 +84,8 @@ discard block |
||
84 | 84 | 'domain' => config('app.url'), |
85 | 85 | 'middleware' => [config('twill.admin_middleware_group', 'web')], |
86 | 86 | ], |
87 | - function ($router) { |
|
88 | - $router->group(['middleware' => $this->app->environment('production') ? ['twill_auth:twill_users'] : []], function ($router) { |
|
87 | + function($router) { |
|
88 | + $router->group(['middleware' => $this->app->environment('production') ? ['twill_auth:twill_users'] : []], function($router) { |
|
89 | 89 | require __DIR__ . '/../routes/templates.php'; |
90 | 90 | }); |
91 | 91 | } |
@@ -118,7 +118,7 @@ discard block |
||
118 | 118 | */ |
119 | 119 | protected function registerMacros() |
120 | 120 | { |
121 | - Route::macro('moduleShowWithPreview', function ($moduleName, $routePrefix = null, $controllerName = null) { |
|
121 | + Route::macro('moduleShowWithPreview', function($moduleName, $routePrefix = null, $controllerName = null) { |
|
122 | 122 | if ($routePrefix === null) { |
123 | 123 | $routePrefix = $moduleName; |
124 | 124 | } |
@@ -134,12 +134,12 @@ discard block |
||
134 | 134 | Route::name($moduleName . '.preview')->get('/admin-preview' . $routePrefix . '{slug}', $controllerName . 'Controller@show')->middleware(['web', 'twill_auth:twill_users', 'can:list']); |
135 | 135 | }); |
136 | 136 | |
137 | - Route::macro('module', function ($slug, $options = [], $resource_options = [], $resource = true) { |
|
137 | + Route::macro('module', function($slug, $options = [], $resource_options = [], $resource = true) { |
|
138 | 138 | |
139 | 139 | $slugs = explode('.', $slug); |
140 | 140 | $prefixSlug = str_replace('.', "/", $slug); |
141 | 141 | $_slug = Arr::last($slugs); |
142 | - $className = implode("", array_map(function ($s) { |
|
142 | + $className = implode("", array_map(function($s) { |
|
143 | 143 | return ucfirst(Str::singular($s)); |
144 | 144 | }, $slugs)); |
145 | 145 | |
@@ -186,7 +186,7 @@ discard block |
||
186 | 186 | |
187 | 187 | if ($resource) { |
188 | 188 | $customRoutePrefix = !empty($groupPrefix) ? "{$groupPrefix}." : ""; |
189 | - Route::group(['as' => $customRoutePrefix], function () use ($slug, $className, $resource_options) { |
|
189 | + Route::group(['as' => $customRoutePrefix], function() use ($slug, $className, $resource_options) { |
|
190 | 190 | Route::resource($slug, "{$className}Controller", $resource_options); |
191 | 191 | }); |
192 | 192 | } |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | $items = $this->getIndexItems($scopes); |
95 | 95 | |
96 | 96 | return [ |
97 | - 'items' => $items->map(function ($item) { |
|
97 | + 'items' => $items->map(function($item) { |
|
98 | 98 | return $item->toCmsArray(); |
99 | 99 | })->toArray(), |
100 | 100 | 'maxPage' => $items->lastPage(), |
@@ -216,7 +216,7 @@ discard block |
||
216 | 216 | { |
217 | 217 | $ids = explode(',', $this->request->input('ids')); |
218 | 218 | |
219 | - $metadatasFromRequest = $this->getExtraMetadatas()->reject(function ($meta) { |
|
219 | + $metadatasFromRequest = $this->getExtraMetadatas()->reject(function($meta) { |
|
220 | 220 | return is_null($meta); |
221 | 221 | })->toArray(); |
222 | 222 | |
@@ -240,7 +240,7 @@ discard block |
||
240 | 240 | $items = $this->getIndexItems($scopes); |
241 | 241 | |
242 | 242 | return $this->responseFactory->json([ |
243 | - 'items' => $items->map(function ($item) { |
|
243 | + 'items' => $items->map(function($item) { |
|
244 | 244 | return $item->toCmsArray(); |
245 | 245 | })->toArray(), |
246 | 246 | 'tags' => $this->repository->getTagsList(), |
@@ -279,7 +279,7 @@ discard block |
||
279 | 279 | */ |
280 | 280 | private function getExtraMetadatas() |
281 | 281 | { |
282 | - return Collection::make($this->customFields)->mapWithKeys(function ($field) { |
|
282 | + return Collection::make($this->customFields)->mapWithKeys(function($field) { |
|
283 | 283 | $fieldInRequest = $this->request->get($field['name']); |
284 | 284 | |
285 | 285 | if (isset($field['type']) && $field['type'] === 'checkbox') { |
@@ -154,7 +154,7 @@ |
||
154 | 154 | protected function formData($request) |
155 | 155 | { |
156 | 156 | $user = $this->authFactory->guard('twill_users')->user(); |
157 | - $with2faSettings = $this->config->get('twill.enabled.users-2fa') && $user->id == $request->route('user');; |
|
157 | + $with2faSettings = $this->config->get('twill.enabled.users-2fa') && $user->id == $request->route('user'); ; |
|
158 | 158 | |
159 | 159 | if ($with2faSettings) { |
160 | 160 | $user->generate2faSecretKey(); |
@@ -42,7 +42,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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([ |
@@ -259,7 +259,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
@@ -88,7 +88,7 @@ discard block |
||
88 | 88 | $items = $this->getIndexItems($scopes); |
89 | 89 | |
90 | 90 | return [ |
91 | - 'items' => $items->map(function ($item) { |
|
91 | + 'items' => $items->map(function($item) { |
|
92 | 92 | return $this->buildFile($item); |
93 | 93 | })->toArray(), |
94 | 94 | 'maxPage' => $items->lastPage(), |
@@ -104,7 +104,7 @@ discard block |
||
104 | 104 | private function buildFile($item) |
105 | 105 | { |
106 | 106 | return $item->toCmsArray() + [ |
107 | - 'tags' => $item->tags->map(function ($tag) { |
|
107 | + 'tags' => $item->tags->map(function($tag) { |
|
108 | 108 | return $tag->name; |
109 | 109 | }), |
110 | 110 | 'deleteUrl' => $item->canDeleteSafely() ? moduleRoute($this->moduleName, $this->routePrefix, 'destroy', $item->id) : null, |
@@ -225,7 +225,7 @@ discard block |
||
225 | 225 | $items = $this->getIndexItems($scopes); |
226 | 226 | |
227 | 227 | return $this->responseFactory->json([ |
228 | - 'items' => $items->map(function ($item) { |
|
228 | + 'items' => $items->map(function($item) { |
|
229 | 229 | return $this->buildFile($item); |
230 | 230 | })->toArray(), |
231 | 231 | 'tags' => $this->repository->getTagsList(), |
@@ -56,16 +56,16 @@ |
||
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, [ |