@@ -51,7 +51,7 @@ |
||
| 51 | 51 | |
| 52 | 52 | config()->set( |
| 53 | 53 | 'mail.recipients', |
| 54 | - collect(config('mail.recipients'))->map(function () { |
|
| 54 | + collect(config('mail.recipients'))->map(function() { |
|
| 55 | 55 | return '[email protected]'; |
| 56 | 56 | }) |
| 57 | 57 | ); |
@@ -15,10 +15,10 @@ |
||
| 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 [ |
@@ -17,8 +17,7 @@ |
||
| 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 | } |
@@ -10,25 +10,25 @@ |
||
| 10 | 10 | { |
| 11 | 11 | public function register() |
| 12 | 12 | { |
| 13 | - Menu::macro('front', function () { |
|
| 13 | + Menu::macro('front', function() { |
|
| 14 | 14 | return Menu::new()->setActiveFromRequest(locale()); |
| 15 | 15 | }); |
| 16 | 16 | |
| 17 | - Menu::macro('main', function () { |
|
| 17 | + Menu::macro('main', function() { |
|
| 18 | 18 | return Menu::front() |
| 19 | 19 | ->addClass('nav navbar-nav') |
| 20 | 20 | ->url('/', 'Home'); |
| 21 | 21 | }); |
| 22 | 22 | |
| 23 | - Menu::macro('language', function () { |
|
| 24 | - return locales()->reduce(function (Menu $menu, string $locale) { |
|
| 23 | + Menu::macro('language', function() { |
|
| 24 | + return locales()->reduce(function(Menu $menu, string $locale) { |
|
| 25 | 25 | $menu->url($locale, $locale); |
| 26 | 26 | }, Menu::front()); |
| 27 | 27 | }); |
| 28 | 28 | |
| 29 | - Menu::macro('articleSiblings', function (Article $article) { |
|
| 29 | + Menu::macro('articleSiblings', function(Article $article) { |
|
| 30 | 30 | return app(ArticleRepository::class)->getSiblings($article) |
| 31 | - ->reduce(function (Menu $menu, Article $article) { |
|
| 31 | + ->reduce(function(Menu $menu, Article $article) { |
|
| 32 | 32 | return $menu->url($article->fullUrl, $article->name); |
| 33 | 33 | }, Menu::front()); |
| 34 | 34 | }); |
@@ -49,8 +49,7 @@ |
||
| 49 | 49 | 'meta_og:type' => 'website', |
| 50 | 50 | 'meta_og:description' => (string) string($this->text)->tease(155), |
| 51 | 51 | 'meta_og:image' => $this->hasMedia('images') ? |
| 52 | - url($this->getFirstMediaUrl('images')) : |
|
| 53 | - url('/images/og-image.png'), |
|
| 52 | + url($this->getFirstMediaUrl('images')) : url('/images/og-image.png'), |
|
| 54 | 53 | ]; |
| 55 | 54 | } |
| 56 | 55 | } |
@@ -32,7 +32,7 @@ |
||
| 32 | 32 | public static function findByNameOrCreate(string $name, TagType $type): Tag |
| 33 | 33 | { |
| 34 | 34 | $existing = self::nonDraft()->get() |
| 35 | - ->first(function (Tag $tag, int $id) use ($name, $type) { |
|
| 35 | + ->first(function(Tag $tag, int $id) use ($name, $type) { |
|
| 36 | 36 | return $tag->translate('name', content_locale()) === $name && $tag->type === (string) $type; |
| 37 | 37 | }); |
| 38 | 38 | |
@@ -20,9 +20,9 @@ |
||
| 20 | 20 | |
| 21 | 21 | public function renderMetaTags(): string |
| 22 | 22 | { |
| 23 | - return $this->seo()->filter(function ($value, $key) { |
|
| 23 | + return $this->seo()->filter(function($value, $key) { |
|
| 24 | 24 | return starts_with($key, 'meta_'); |
| 25 | - })->map(function ($value, $key) : string { |
|
| 25 | + })->map(function($value, $key) : string { |
|
| 26 | 26 | $key = substr($key, 5); |
| 27 | 27 | $attribute = starts_with($key, 'og:') ? 'property' : 'name'; |
| 28 | 28 | return "<meta {$attribute}=\"{$key}\" content=\"{$value}\">"; |
@@ -36,7 +36,7 @@ |
||
| 36 | 36 | 'module' => $this->moduleName, |
| 37 | 37 | 'parentMenuItems' => app(ArticleRepository::class) |
| 38 | 38 | ->getTopLevel() |
| 39 | - ->filter(function (Article $article) { |
|
| 39 | + ->filter(function(Article $article) { |
|
| 40 | 40 | return $article->technical_name != SpecialArticle::HOME; |
| 41 | 41 | }) |
| 42 | 42 | ->pluck('name', 'id') |
@@ -19,7 +19,7 @@ |
||
| 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 | } |