Skip to content

Commit 345e350

Browse files
mckenzieartsgithub-actions[bot]
authored andcommitted
Apply php-cs-fixer changes
1 parent 7c075be commit 345e350

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/Widgets/RecentNumbers.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,15 @@ public function run()
4141
$countUsers = User::count();
4242
$lastMonthRegistered = User::query()->whereBetween('created_at', [
4343
$lastMonth->startOfMonth()->format('Y-m-d'),
44-
$lastMonth->endOfMonth()->format('Y-m-d')
44+
$lastMonth->endOfMonth()->format('Y-m-d'),
4545
])->count();
4646
$currentMonthRegistered = User::query()->where('created_at', '>=', now()->startOfMonth())->count();
4747
$difference = $currentMonthRegistered - $lastMonthRegistered;
4848

4949
$countArticles = Article::count();
5050
$lastMonthArticles = Article::query()->whereBetween('created_at', [
5151
$lastMonth->startOfMonth()->format('Y-m-d'),
52-
$lastMonth->endOfMonth()->format('Y-m-d')
52+
$lastMonth->endOfMonth()->format('Y-m-d'),
5353
])->count();
5454
$currentMonthArticles = Article::query()->where('created_at', '>=', now()->startOfMonth())->count();
5555
$differenceArticle = $currentMonthArticles - $lastMonthArticles;

0 commit comments

Comments
 (0)