Files
cachet-docker/routes/console.php
Laravel Shift e7b419c4fc Shift Routes
Laravel 5.3 now stores Routes in a top-level `routes` folder and
separates them into API, console, and web files.
2016-10-19 07:53:10 +00:00

19 lines
553 B
PHP
Executable File

<?php
use Illuminate\Foundation\Inspiring;
/*
|--------------------------------------------------------------------------
| Console Routes
|--------------------------------------------------------------------------
|
| 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());
})->describe('Display an inspiring quote');