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.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php
index 3bd744e..f7dc4eb 100644
--- a/app/Console/Kernel.php
+++ b/app/Console/Kernel.php
@@ -36,7 +36,8 @@ class Kernel extends ConsoleKernel
$schedule->call( function(){
$background = new Background();
$background->saveAnimeStats();
- })->dailyAt('22:00');
+ })->everyThirtyMinutes()->name('saveStats')->withoutOverlapping(2);
+ #})->everyMinute();
$schedule->call( function(){
$background = new Background();