| 1 | <?php |
||
| 7 | class InstallCommand extends Installation\Command |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * The name and signature of the console command. |
||
| 11 | * |
||
| 12 | * @var string |
||
| 13 | */ |
||
| 14 | protected $signature = 'sleepingowl:install |
||
| 15 | {--force : Force SleepingOwl to install even it has been already installed}'; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * The console command description. |
||
| 19 | * @var string |
||
| 20 | */ |
||
| 21 | protected $description = 'Install the SleepingOwl Admin package'; |
||
| 22 | |||
| 23 | protected function runInstaller() |
||
| 46 | } |
||
| 47 |