<?phpnamespaceIlluminate\Foundation\Console;useIlluminate\Console\Command;classUpCommandextendsCommand{/** * The console command name. * * @var string */protected$name='up';/** * The console command description. * * @var string */protected$description='Bring the application out of maintenance mode';/** * Execute the console command. * * @return void */publicfunctionfire(){@unlink($this->laravel->storagePath().'/framework/down');$this->info('Application is now live.');}}