console.php 471 B

1234567891011121314
  1. <?php
  2. use Illuminate\Foundation\Inspiring;
  3. use Illuminate\Support\Facades\Artisan;
  4. Artisan::command('inspire', function () {
  5. $this->comment(Inspiring::quote());
  6. })->purpose('Display an inspiring quote');
  7. // 每天凌晨2点检查房屋降级
  8. \Illuminate\Support\Facades\Schedule::command('farm:check-house-downgrade')->dailyAt('02:00');
  9. // 每分钟更新作物生长状态
  10. \Illuminate\Support\Facades\Schedule::command('farm:update-crop-growth')->everyMinute();