summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhorus2022-11-17 20:27:21 +0100
committerhorus2022-11-17 20:27:21 +0100
commit965292ffe460b3cb5b9452161499d20310905589 (patch)
tree1997e986440eff54c5e02cf2d136df484c9575d7
parent74195cb1ef741ec1037156c339109e6a6ba6a74a (diff)
downloadsenpai-965292ffe460b3cb5b9452161499d20310905589.tar.gz
formatting
-rw-r--r--app/Console/Kernel.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php
index 531c50e..ccad119 100644
--- a/app/Console/Kernel.php
+++ b/app/Console/Kernel.php
@@ -26,9 +26,9 @@ class Kernel extends ConsoleKernel
{
$schedule->command("anime:saveStats")
- ->everyThirtyMinutes()->name('saveStats')
- ->emailOutputTo( env('STATUS_MAIL_ADDRESS') )
- ->withoutOverlapping();
+ ->everyThirtyMinutes()->name('saveStats')
+ ->emailOutputTo( env('STATUS_MAIL_ADDRESS') )
+ ->withoutOverlapping();
$schedule->command("anime:saveSeasonAiring")
->dailyAt('18:30')
@@ -44,7 +44,7 @@ class Kernel extends ConsoleKernel
$schedule->command("anime:checkImage")
->weeklyOn(3, '18:00')->name('checkForBrokenThings')
- ->emailOutputTo( env('STATUS_MAIL_ADDRESS') );
+ ->emailOutputTo( env('STATUS_MAIL_ADDRESS') );
}