| 1 | <?php namespace Arcanesoft\Blog\Console; |
||
| 12 | class InstallCommand extends Command |
||
| 13 | { |
||
| 14 | /* ----------------------------------------------------------------- |
||
| 15 | | Properties |
||
| 16 | | ----------------------------------------------------------------- |
||
| 17 | */ |
||
| 18 | |||
| 19 | /** |
||
| 20 | * The name and signature of the console command. |
||
| 21 | * |
||
| 22 | * @var string |
||
| 23 | */ |
||
| 24 | protected $signature = 'blog:install'; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * The console command description. |
||
| 28 | * |
||
| 29 | * @var string |
||
| 30 | */ |
||
| 31 | protected $description = 'Install the Blog module.'; |
||
| 32 | |||
| 33 | /* ----------------------------------------------------------------- |
||
| 34 | | Main Methods |
||
| 35 | | ----------------------------------------------------------------- |
||
| 36 | */ |
||
| 37 | |||
| 38 | /** |
||
| 39 | * Execute the console command. |
||
| 40 | */ |
||
| 41 | public function handle() |
||
| 45 | } |
||
| 46 |