|
|
@@ -8,6 +8,8 @@
|
|
|
|
|
|
use App\Jobs\DailyReportJob;
|
|
|
|
|
|
+use Illuminate\Support\Facades\Log;
|
|
|
+
|
|
|
Artisan::command('inspire', function () {
|
|
|
$this->comment(Inspiring::quote());
|
|
|
})->purpose('Display an inspiring quote');
|
|
|
@@ -47,4 +49,4 @@
|
|
|
Schedule::call(function () {
|
|
|
// 每日同步国家数据
|
|
|
SyncFootballDataService::syncCountry();
|
|
|
-})->daily()->name('每日清理任务')->withoutOverlapping();
|
|
|
+})->daily()->name('每日任务')->withoutOverlapping();
|