1 | <?php |
||
7 | class InstallCommand extends AbstractInitializeCommand |
||
8 | { |
||
9 | /** |
||
10 | * The name and signature of the console command. |
||
11 | * |
||
12 | * @var string |
||
13 | */ |
||
14 | protected $signature = 'app:install |
||
15 | {--root : Run commands which requires root privileges}'; |
||
16 | |||
17 | /** |
||
18 | * The console command description. |
||
19 | * |
||
20 | * @var string |
||
21 | */ |
||
22 | protected $description = 'Install the application according to current environment'; |
||
23 | |||
24 | /** |
||
25 | * Returns instance of Install class which defines initializing runner chain. |
||
26 | * |
||
27 | * {@inheritdoc} |
||
28 | */ |
||
29 | 105 | protected function getInitializerInstance(Container $container) |
|
33 | |||
34 | 105 | protected function title(): string |
|
38 | } |
||
39 |