for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PragmaRX\Firewall\Vendor\Laravel\Artisan;
class UpdateGeoIp extends Base
{
/**
* The console command name.
*
* @var string
*/
protected $name = 'firewall:updategeoip';
* The console command description.
protected $description = 'Update the GeoIP database.';
* Execute the console command.
* @return mixed
public function fire()
$type = $this->laravel->firewall->updateGeoIp()
firewall
Illuminate\Contracts\Foundation\Application
instanceof
? 'info'
: 'error';
$this->displayMessages($type, $this->laravel->firewall->getMessages());
}