13 lines
424 B
PHP
13 lines
424 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');
|
|
|
|
// Presence sweep — "home" immediately on association, "away" after a debounce (in the command).
|
|
Schedule::command('presence:poll')->everyMinute()->withoutOverlapping();
|