Total Complexity | 2 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
5 | class UpdateGeoIp extends Base |
||
6 | { |
||
7 | /** |
||
8 | * The console command name. |
||
9 | * |
||
10 | * @var string |
||
11 | */ |
||
12 | protected $name = 'firewall:updategeoip'; |
||
13 | |||
14 | /** |
||
15 | * The console command description. |
||
16 | * |
||
17 | * @var string |
||
18 | */ |
||
19 | protected $description = 'Update the GeoIP database.'; |
||
20 | |||
21 | /** |
||
22 | * Execute the console command. |
||
23 | * |
||
24 | * @return mixed |
||
25 | */ |
||
26 | public function fire() |
||
35 |