openclassify/routes/console.php
2026-03-07 19:29:55 +03:00

14 lines
333 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');
if (config('demo.enabled')) {
Schedule::command('demo:cleanup')->hourly();
}