1 | <?php |
||
12 | class Inspire extends Command |
||
13 | { |
||
14 | /** |
||
15 | * The name and signature of the console command. |
||
16 | * |
||
17 | * @var string |
||
18 | */ |
||
19 | protected $signature = 'inspire'; |
||
20 | |||
21 | /** |
||
22 | * The console command description. |
||
23 | * |
||
24 | * @var string |
||
25 | */ |
||
26 | protected $description = 'Display an inspiring quote'; |
||
27 | |||
28 | /** |
||
29 | * Execute the console command. |
||
30 | * @name handle |
||
31 | */ |
||
32 | public function handle() |
||
36 | } |
||
37 |