blob: 19cef702b8835cb4fc7cb47dc7995afea6e5b473 (
plain)
1
2
3
4
5
6
7
8
9
10
|
<?php
use Illuminate\Foundation\Console\ClosureCommand;
use Illuminate\Foundation\Inspiring;
use Illuminate\Support\Facades\Artisan;
Artisan::command('inspire', function () {
/** @var ClosureCommand $this */
$this->comment(Inspiring::quote());
})->purpose('Display an inspiring quote');
|