Files
w4rpservices/app/Console/Commands/Eve/GetEveRegions.php

43 lines
722 B
PHP

<?php
namespace App\Console\Commands\Eve;
use Illuminate\Console\Command;
class GetEveRegions extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'eve:getRegions';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Gets all of the information for regions from the eve esi';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
//
}
}