baseline for getting structures to table

This commit is contained in:
2019-05-27 23:54:42 -05:00
parent ab4d13fa14
commit c6d7c66a8c

View File

@@ -1,53 +0,0 @@
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
use DB;
use Commands\Library\CommandHelper;
use App\Models\ScheduledTask\ScheduleJob;
class StructureStocksCommand extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'services:StationStocks';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Get the alliance stocks which are for sale from esi.';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
//Create the command helper container
$task = new CommandHelper('StationStocks');
//Add the entry into the jobs table saying the job is starting
$task->SetStartStatus();
//Mark the job as finished
$task->SetStopStatus();
}
}