Passed
Push — master ( a9f297...c36ed8 )
by Quentin
05:24
created
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/RouteServiceProvider.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -49,8 +49,8 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
             }
Please login to merge, or discard this patch.
src/Http/Controllers/Admin/UserController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -154,7 +154,7 @@
 block discarded – undo
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();
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.
src/Http/Controllers/Admin/DashboardController.php 1 patch
Spacing   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -108,14 +108,14 @@  discard block
 block discarded – undo
108 108
     {
109 109
         $modules = Collection::make($this->config->get('twill.dashboard.modules'));
110 110
 
111
-        return $modules->filter(function ($module) {
111
+        return $modules->filter(function($module) {
112 112
             return ($module['search'] ?? false);
113
-        })->map(function ($module) use ($request) {
113
+        })->map(function($module) use ($request) {
114 114
             $repository = $this->getRepository($module['name']);
115 115
 
116 116
             $found = $repository->cmsSearch($request->get('search'), $module['search_fields'] ?? ['title'])->take(10);
117 117
 
118
-            return $found->map(function ($item) use ($module) {
118
+            return $found->map(function($item) use ($module) {
119 119
                 try {
120 120
                     $author = $item->revisions()->latest()->first()->user->name ?? 'Admin';
121 121
                 } catch (\Exception $e) {
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
      */
143 143
     private function getAllActivities()
144 144
     {
145
-        return Activity::take(20)->latest()->get()->map(function ($activity) {
145
+        return Activity::take(20)->latest()->get()->map(function($activity) {
146 146
             return $this->formatActivity($activity);
147 147
         })->filter()->values();
148 148
     }
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
      */
153 153
     private function getLoggedInUserActivities()
154 154
     {
155
-        return Activity::where('causer_id', $this->authFactory->guard('twill_users')->user()->id)->take(20)->latest()->get()->map(function ($activity) {
155
+        return Activity::where('causer_id', $this->authFactory->guard('twill_users')->user()->id)->take(20)->latest()->get()->map(function($activity) {
156 156
             return $this->formatActivity($activity);
157 157
         })->filter()->values();
158 158
     }
@@ -201,7 +201,7 @@  discard block
 block discarded – undo
201 201
             return [];
202 202
         }
203 203
 
204
-        $statsByDate = Collection::make($response['rows'] ?? [])->map(function (array $dateRow) {
204
+        $statsByDate = Collection::make($response['rows'] ?? [])->map(function(array $dateRow) {
205 205
             return [
206 206
                 'date' => $dateRow[0],
207 207
                 'users' => (int) $dateRow[1],
@@ -216,7 +216,7 @@  discard block
 block discarded – undo
216 216
             'yesterday',
217 217
             'week',
218 218
             'month',
219
-        ])->mapWithKeys(function ($period) use ($statsByDate) {
219
+        ])->mapWithKeys(function($period) use ($statsByDate) {
220 220
             $stats = $this->getPeriodStats($period, $statsByDate);
221 221
             return [
222 222
                 $period => [
@@ -253,10 +253,10 @@  discard block
 block discarded – undo
253 253
                 'stats' => $stats = $statsByDate->first(),
254 254
                 'moreUsers' => $stats['users'] > $statsByDate->get(1)['users'],
255 255
                 'morePageViews' => $stats['pageViews'] > $statsByDate->get(1)['pageViews'],
256
-                'usersData' => $statsByDate->take(7)->map(function ($stat) {
256
+                'usersData' => $statsByDate->take(7)->map(function($stat) {
257 257
                     return $stat['users'];
258 258
                 }),
259
-                'pageViewsData' => $statsByDate->take(7)->map(function ($stat) {
259
+                'pageViewsData' => $statsByDate->take(7)->map(function($stat) {
260 260
                     return $stat['pageViews'];
261 261
                 }),
262 262
             ];
@@ -265,10 +265,10 @@  discard block
 block discarded – undo
265 265
                 'stats' => $stats = $statsByDate->get(1),
266 266
                 'moreUsers' => $stats['users'] > $statsByDate->get(2)['users'],
267 267
                 'morePageViews' => $stats['pageViews'] > $statsByDate->get(2)['pageViews'],
268
-                'usersData' => $statsByDate->slice(1)->take(7)->map(function ($stat) {
268
+                'usersData' => $statsByDate->slice(1)->take(7)->map(function($stat) {
269 269
                     return $stat['users'];
270 270
                 }),
271
-                'pageViewsData' => $statsByDate->slice(1)->take(7)->map(function ($stat) {
271
+                'pageViewsData' => $statsByDate->slice(1)->take(7)->map(function($stat) {
272 272
                     return $stat['pageViews'];
273 273
                 }),
274 274
             ];
@@ -291,10 +291,10 @@  discard block
 block discarded – undo
291 291
                 'stats' => $stats,
292 292
                 'moreUsers' => $stats['users'] > $compareStats['users'],
293 293
                 'morePageViews' => $stats['pageViews'] > $compareStats['pageViews'],
294
-                'usersData' => $statsByDate->slice(1)->take(29)->map(function ($stat) {
294
+                'usersData' => $statsByDate->slice(1)->take(29)->map(function($stat) {
295 295
                     return $stat['users'];
296 296
                 }),
297
-                'pageViewsData' => $statsByDate->slice(1)->take(29)->map(function ($stat) {
297
+                'pageViewsData' => $statsByDate->slice(1)->take(29)->map(function($stat) {
298 298
                     return $stat['pageViews'];
299 299
                 }),
300 300
             ];
@@ -317,10 +317,10 @@  discard block
 block discarded – undo
317 317
                 'stats' => $stats,
318 318
                 'moreUsers' => $stats['users'] > $compareStats['users'],
319 319
                 'morePageViews' => $stats['pageViews'] > $compareStats['pageViews'],
320
-                'usersData' => $statsByDate->slice(1)->take(29)->map(function ($stat) {
320
+                'usersData' => $statsByDate->slice(1)->take(29)->map(function($stat) {
321 321
                     return $stat['users'];
322 322
                 }),
323
-                'pageViewsData' => $statsByDate->slice(1)->take(29)->map(function ($stat) {
323
+                'pageViewsData' => $statsByDate->slice(1)->take(29)->map(function($stat) {
324 324
                     return $stat['pageViews'];
325 325
                 }),
326 326
             ];
@@ -346,9 +346,9 @@  discard block
 block discarded – undo
346 346
      */
347 347
     private function getShortcuts($modules)
348 348
     {
349
-        return $modules->filter(function ($module) {
349
+        return $modules->filter(function($module) {
350 350
             return ($module['count'] ?? false) || ($module['create'] ?? false);
351
-        })->map(function ($module) {
351
+        })->map(function($module) {
352 352
             $repository = $this->getRepository($module['name']);
353 353
 
354 354
             $moduleOptions = [
@@ -385,14 +385,14 @@  discard block
 block discarded – undo
385 385
      */
386 386
     private function getDrafts($modules)
387 387
     {
388
-        return $modules->filter(function ($module) {
388
+        return $modules->filter(function($module) {
389 389
             return ($module['draft'] ?? false);
390
-        })->map(function ($module) {
390
+        })->map(function($module) {
391 391
             $repository = $this->getRepository($module['name']);
392 392
 
393 393
             $drafts = $repository->draft()->mine()->limit(3)->latest()->get();
394 394
 
395
-            return $drafts->map(function ($draft) use ($module) {
395
+            return $drafts->map(function($draft) use ($module) {
396 396
                 return [
397 397
                     'type' => ucfirst($module['label_singular'] ?? Str::singular($module['name'])),
398 398
                     'name' => $draft->titleInDashboard ?? $draft->title,
Please login to merge, or discard this patch.
src/Http/Requests/Admin/UserRequest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
                         'name' => 'required',
41 41
                         'role' => 'not_in:SUPERADMIN',
42 42
                         'email' => 'required|email|unique:' . config('twill.users_table', 'twill_users') . ',email,' . $this->route('user'),
43
-                        'verify-code' => function ($attribute, $value, $fail) {
43
+                        'verify-code' => function($attribute, $value, $fail) {
44 44
                             $user = Auth::guard('twill_users')->user();
45 45
                             $with2faSettings = config('twill.enabled.users-2fa') && $user->id == $this->route('user');
46 46
 
Please login to merge, or discard this patch.
src/Commands/GenerateBlocks.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
 
65 65
         $this->info(self::SCANNING_BLOCKS);
66 66
 
67
-        Collection::make($this->filesystem->files($path))->each(function ($viewFile) {
67
+        Collection::make($this->filesystem->files($path))->each(function($viewFile) {
68 68
             $blockName = $viewFile->getBasename('.blade.php');
69 69
 
70 70
             $vueBlockTemplate = $this->viewFactory->make('admin.blocks.' . $blockName, ['renderForBlocks' => true])->render();
Please login to merge, or discard this patch.