22 lines
518 B
PHP
22 lines
518 B
PHP
<?php
|
|
|
|
/*use Illuminate\Foundation\Inspiring;
|
|
use Illuminate\Support\Facades\Artisan;
|
|
|
|
Artisan::command('inspire', function () {
|
|
$this->comment(Inspiring::quote());
|
|
})->purpose('Display an inspiring quote')->hourly();*/
|
|
|
|
Artisan::command('question', function () {
|
|
$name = $this->ask('What is your name?');
|
|
|
|
$language = $this->choice('Which language do you prefer?', [
|
|
'PHP',
|
|
'Ruby',
|
|
'Python',
|
|
]);
|
|
|
|
$this->line('Your name is '.$name.' and you prefer '.$language.'.');
|
|
});
|
|
|