34 lines
1.0 KiB
PHP
34 lines
1.0 KiB
PHP
<?php
|
|
|
|
use Illuminate\Foundation\Inspiring;
|
|
use Illuminate\Support\Facades\Artisan;
|
|
use Illuminate\Support\Facades\Schedule;
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Console Commands
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| This file is where you may define all of your Closure based console
|
|
| commands. Each Closure is bound to a command instance allowing a
|
|
| simple approach to interacting with each command's IO methods.
|
|
|
|
|
*/
|
|
|
|
Artisan::command('inspire', function () {
|
|
$this->comment(Inspiring::quote());
|
|
})->purpose('Display an inspiring quote');
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Console Schedule
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Below you may define your scheduled tasks, including console commands
|
|
| or system commands. These tasks will be run automatically when due
|
|
| using Laravel's built-in "schedule:run" Artisan console command.
|
|
|
|
|
*/
|
|
|
|
Schedule::command('inspire')->hourly();
|