summaryrefslogtreecommitdiff
path: root/app/Console/Kernel.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Console/Kernel.php')
-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') );
}