Skip to content

Commit a0249aa

Browse files
driesvintsgithub-actions[bot]
authored andcommitted
Fix code styling
1 parent c4c3aa1 commit a0249aa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/Http/Controllers/Articles/ArticlesController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public function index(Request $request)
5555

5656
$canonical = canonical('articles', ['filter' => $filter, 'tag' => $activeTag?->slug()]);
5757
$topAuthors = Cache::remember(
58-
'topAuthors',
58+
'topAuthors',
5959
now()->addMinutes(30),
6060
fn () => User::mostSubmissionsInLastDays(365)->take(5)->get()
6161
);

app/Http/Controllers/HomeController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public function show()
3838

3939
$latestArticles = Cache::remember(
4040
'latestArticles',
41-
now()->addHour(),
41+
now()->addHour(),
4242
fn () => Article::published()->recent()->limit(4)->get()
4343
);
4444

0 commit comments

Comments
 (0)