2026-02-11 17:28:36 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
use Illuminate\Foundation\Inspiring;
|
|
|
|
|
use Illuminate\Support\Facades\Artisan;
|
2026-02-18 12:56:36 +08:00
|
|
|
use Illuminate\Support\Facades\Schedule;
|
2026-02-11 17:28:36 +08:00
|
|
|
|
|
|
|
|
Artisan::command('inspire', function () {
|
|
|
|
|
$this->comment(Inspiring::quote());
|
|
|
|
|
})->purpose('Display an inspiring quote');
|
2026-02-18 12:56:36 +08:00
|
|
|
|
|
|
|
|
Schedule::command('crawler:run')->everyMinute()->withoutOverlapping();
|