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