kenken999/php
0
1<?php2 3use Illuminate\Foundation\Inspiring;4use Illuminate\Support\Facades\Artisan;5 6/*7|--------------------------------------------------------------------------8| Console Routes9|--------------------------------------------------------------------------10|11| This file is where you may define all of your Closure based console12| commands. Each Closure is bound to a command instance allowing a13| simple approach to interacting with each command's IO methods.14|15*/16 17Artisan::command('inspire', function () {18 $this->comment(Inspiring::quote());19})->purpose('Display an inspiring quote');20 