14 lines
352 B
PHP
14 lines
352 B
PHP
<?php
|
|
|
|
use App\Services\BotService;
|
|
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');
|
|
|
|
Schedule::call(fn() => app(BotService::class)->run())->everyMinute();
|
|
|