Completed
Push — master ( 53eef0...537748 )
by Freek
12:00 queued 08:42
created
app/Services/Html/FormBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -99,7 +99,7 @@
 block discarded – undo
99 99
 
100 100
     public function locales(array $locales, string $current) : string
101 101
     {
102
-        $list = array_reduce($locales, function (array $list, string $locale) {
102
+        $list = array_reduce($locales, function(array $list, string $locale) {
103 103
             $list[$locale] = trans("locales.{$locale}");
104 104
 
105 105
             return $list;
Please login to merge, or discard this patch.
app/Http/Controllers/Back/StatisticsController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,10 +15,10 @@
 block discarded – undo
15 15
         }
16 16
 
17 17
         $visitors = Analytics::fetchVisitorsAndPageViews(Period::days(365))
18
-            ->groupBy(function (array $visitorStatistics) {
18
+            ->groupBy(function(array $visitorStatistics) {
19 19
                 return $visitorStatistics['date']->format('Y-m');
20 20
             })
21
-            ->map(function ($visitorStatistics, $yearMonth) {
21
+            ->map(function($visitorStatistics, $yearMonth) {
22 22
                 list($year, $month) = explode('-', $yearMonth);
23 23
 
24 24
                 return [
Please login to merge, or discard this patch.
app/Models/Transformers/MediaTransformer.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,8 +17,7 @@
 block discarded – undo
17 17
             'customProperties' => json_encode($media->custom_properties, JSON_FORCE_OBJECT),
18 18
             'orderColumn' => $media->order_column,
19 19
             'thumbUrl' => strtolower($media->extension) === 'svg' ?
20
-                $media->getUrl() :
21
-                $media->getUrl('admin'),
20
+                $media->getUrl() : $media->getUrl('admin'),
22 21
             'originalUrl' => $media->getUrl(),
23 22
         ];
24 23
     }
Please login to merge, or discard this patch.
app/Http/Controllers/Back/Auth/ResetPasswordController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
     public function showResetForm(Request $request, $token = null)
46 46
     {
47 47
 
48
-        if (! $user = User::findByToken($token)) {
48
+        if (!$user = User::findByToken($token)) {
49 49
             flash()->error(trans('passwordReset.invalidToken'));
50 50
 
51 51
             return redirect()->to(login_url());
Please login to merge, or discard this patch.
app/Providers/BroadcastServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
         /*
20 20
          * Authenticate the user's personal channel...
21 21
          */
22
-        Broadcast::channel('App.User.*', function ($user, $userId) {
22
+        Broadcast::channel('App.User.*', function($user, $userId) {
23 23
             return (int) $user->id === (int) $userId;
24 24
         });
25 25
     }
Please login to merge, or discard this patch.
app/Http/Controllers/Front/Auth/ResetPasswordController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
     public function showResetForm(Request $request, $token = null)
46 46
     {
47 47
 
48
-        if (! $user = User::findByToken($token)) {
48
+        if (!$user = User::findByToken($token)) {
49 49
             flash()->error(trans('passwordReset.invalidToken'));
50 50
 
51 51
             return redirect()->to(login_url());
Please login to merge, or discard this patch.
app/Services/Html/BlenderFormBuilder.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -245,11 +245,11 @@  discard block
 block discarded – undo
245 245
 
246 246
     public function seo(): string
247 247
     {
248
-        return locales()->map(function ($locale) {
248
+        return locales()->map(function($locale) {
249 249
 
250 250
             return collect($this->model->defaultSeoValues())
251 251
                 ->keys()
252
-                ->map(function ($attribute) use ($locale) {
252
+                ->map(function($attribute) use ($locale) {
253 253
 
254 254
                     $fieldName = translate_field_name("seo.{$attribute}", $locale);
255 255
 
@@ -261,7 +261,7 @@  discard block
 block discarded – undo
261 261
                         ),
262 262
                     ]);
263 263
                 })
264
-                ->pipe(function (Collection $fields) use ($locale) {
264
+                ->pipe(function(Collection $fields) use ($locale) {
265 265
                     return $this->languageFieldSet($locale, $fields->toArray());
266 266
                 });
267 267
         })->implode('');
Please login to merge, or discard this patch.
app/Http/Controllers/Back/ArticlesController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
     {
26 26
         $parentMenuItems = app(ArticleRepository::class)
27 27
             ->getTopLevel()
28
-            ->filter(function (Article $article) {
28
+            ->filter(function(Article $article) {
29 29
                 return $article->technical_name != SpecialArticle::HOME;
30 30
             })
31 31
             ->pluck('name', 'id')
Please login to merge, or discard this patch.
app/Services/Navigation/Menu/BackMenus.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -10,26 +10,26 @@  discard block
 block discarded – undo
10 10
 {
11 11
     public function register()
12 12
     {
13
-        Menu::macro('back', function () {
13
+        Menu::macro('back', function() {
14 14
             return Menu::new()
15 15
                 ->setActiveClass('-active')
16 16
                 ->setActiveFromRequest('/blender');
17 17
         });
18 18
 
19
-        Menu::macro('moduleGroup', function ($title) {
19
+        Menu::macro('moduleGroup', function($title) {
20 20
             return Menu::back()
21 21
                 ->addParentClass('menu__group')
22 22
                 ->setParentAttribute('data-menu-group', fragment("back.nav.{$title}"))
23
-                ->registerFilter(function (Link $link) {
23
+                ->registerFilter(function(Link $link) {
24 24
                     $link->addParentClass('menu__group__item');
25 25
                 });
26 26
         });
27 27
 
28
-        Menu::macro('module', function (string $action, string $name) {
28
+        Menu::macro('module', function(string $action, string $name) {
29 29
             return $this->action("Back\\{$action}", fragment("back.{$name}"));
30 30
         });
31 31
 
32
-        Menu::macro('backMain', function () {
32
+        Menu::macro('backMain', function() {
33 33
             return Menu::back()
34 34
                 ->addClass('menu__groups')
35 35
                 ->setAttribute('data-menu-groups')
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
                     ->module('StatisticsController@index', 'statistics.menuTitle'));
51 51
         });
52 52
 
53
-        Menu::macro('backUser', function () {
53
+        Menu::macro('backUser', function() {
54 54
 
55 55
             $avatar = Html::avatar(current_user(), '-small').
56 56
                 el('span.:response-desktop-only', current_user()->email);
@@ -60,9 +60,9 @@  discard block
 block discarded – undo
60 60
                 ->html(view('back.auth._partials.logoutForm'));
61 61
         });
62 62
 
63
-        Menu::macro('breadcrumbs', function (array $breadcrumbs) {
64
-            return Menu::build($breadcrumbs, function (Menu $menu, $actionWithParameters, $label) {
65
-                if (! is_array($actionWithParameters)) {
63
+        Menu::macro('breadcrumbs', function(array $breadcrumbs) {
64
+            return Menu::build($breadcrumbs, function(Menu $menu, $actionWithParameters, $label) {
65
+                if (!is_array($actionWithParameters)) {
66 66
                     $actionWithParameters = [$actionWithParameters];
67 67
                 }
68 68
 
Please login to merge, or discard this patch.