LogViewer/code/routes/console.php
splin94@yandex.ru 3a4a328d80 -
2023-11-09 20:51:08 +00:00

22 lines
579 B
PHP
Executable File

<?php
use Illuminate\Foundation\Inspiring;
use Illuminate\Foundation\Console\Kernel;
/** @var Kernel $this */
/*
|--------------------------------------------------------------------------
| 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.
|
*/
$this->command('inspire', function () {
$this->comment(Inspiring::quote());
});