16 lines
504 B
PHP
16 lines
504 B
PHP
<?php
|
|
|
|
use Illuminate\Foundation\Inspiring;
|
|
use Illuminate\Support\Facades\Artisan;
|
|
use Illuminate\Support\Facades\Schedule;
|
|
|
|
Artisan::command('inspire', function () {
|
|
$this->comment(Inspiring::quote());
|
|
})->purpose('Display an inspiring quote');
|
|
|
|
// 每天凌晨 3 点清理超过 30 天的聊天记录
|
|
Schedule::command('messages:purge')->dailyAt('03:00');
|
|
|
|
// 每 5 分钟为所有在线用户自动存点(经验/金币/等级)
|
|
Schedule::command('chatroom:auto-save-exp')->everyFiveMinutes();
|