| 1 | <?php |
||
| 27 | class Inspire extends Command |
||
| 28 | { |
||
| 29 | /** |
||
| 30 | * The name and signature of the console command. |
||
| 31 | * |
||
| 32 | * @var string |
||
| 33 | */ |
||
| 34 | protected $signature = 'inspire'; |
||
| 35 | |||
| 36 | /** |
||
| 37 | * The console command description. |
||
| 38 | * |
||
| 39 | * @var string |
||
| 40 | */ |
||
| 41 | protected $description = 'Display an inspiring quote'; |
||
| 42 | |||
| 43 | /** |
||
| 44 | * Execute the console command. |
||
| 45 | * |
||
| 46 | * @return mixed |
||
| 47 | */ |
||
| 48 | public function handle() |
||
| 52 | } |
||
| 53 |