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.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php
index a1cac43..2bb1fea 100644
--- a/app/Console/Kernel.php
+++ b/app/Console/Kernel.php
@@ -58,6 +58,12 @@ class Kernel extends ConsoleKernel
$helper->setCalendarForAll();
})->dailyAt('19:30');
#})->everyMinute();
+
+ $schedule->call( function(){
+ $background = new Background();
+ $background->saveEnhancementForAll();
+ })->weeklyOn(1, '15:30');
+ #})->everyMinute();
}
/**