| 1 | <?php |
||
| 5 | class UpdateGeoIp extends Base |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * The console command name. |
||
| 9 | * |
||
| 10 | * @var string |
||
| 11 | */ |
||
| 12 | protected $name = 'tracker:updategeoip'; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * The console command description. |
||
| 16 | * |
||
| 17 | * @var string |
||
| 18 | */ |
||
| 19 | protected $description = 'Update the GeoIP database.'; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * Update the geo ip database. |
||
| 23 | * |
||
| 24 | * @return void |
||
| 25 | */ |
||
| 26 | public function fire() |
||
| 36 | |||
| 37 | /** |
||
| 38 | * Handle the command. |
||
| 39 | * |
||
| 40 | * @return void |
||
| 41 | */ |
||
| 42 | public function handle() |
||
| 46 | } |
||
| 47 |