芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/myvyralapp.com/bck/vendor/torann/geoip/src/Console/Update.php
fire(); } /** * Execute the console command. * * @return void */ public function fire() { // Get default service $service = app('geoip')->getService(); // Ensure the selected service supports updating if (method_exists($service, 'update') === false) { $this->info('The current service "' . get_class($service) . '" does not support updating.'); return; } $this->comment('Updating...'); // Perform update if ($result = $service->update()) { $this->info($result); } else { $this->error('Update failed!'); } } }