14 lines
495 B
PHP
14 lines
495 B
PHP
<?php
|
|
|
|
use Illuminate\Foundation\Inspiring;
|
|
use Illuminate\Support\Facades\Artisan;
|
|
|
|
Artisan::command('inspire', function () {
|
|
$this->comment(Inspiring::quote());
|
|
})->purpose('Display an inspiring quote');
|
|
|
|
Schedule::command('report:send-call-stats')->everyTwoMinutes();
|
|
Schedule::command('report:send-system-message-stats')->everyThreeMinutes();
|
|
Schedule::command('report:send-keypress-stats')->everyFourMinutes();
|
|
Schedule::command('report:send-people-message-stats')->everyFiveMinutes();
|