| 1 | <?php |
||
| 10 | class InstallCommand extends Command |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * The name and signature of the console command. |
||
| 14 | * |
||
| 15 | * @var string |
||
| 16 | */ |
||
| 17 | protected $signature = 'admin:install |
||
| 18 | {--force : Overwrite existing files}'; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * The console command description. |
||
| 22 | * |
||
| 23 | * @var string |
||
| 24 | */ |
||
| 25 | protected $description = 'Install Sco Admin Package.'; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Execute the console command. |
||
| 29 | * |
||
| 30 | * @return mixed |
||
| 31 | */ |
||
| 32 | public function handle() |
||
| 44 | |||
| 45 | protected function publish() |
||
| 53 | |||
| 54 | protected function routes() |
||
| 64 | } |
||
| 65 |