mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/shipping-portal.git
synced 2026-08-22 05:54:01 +00:00
50 lines
977 B
PHP
50 lines
977 B
PHP
<?php
|
|
|
|
namespace App\Console\Commands\V2;
|
|
|
|
|
|
use Illuminate\Console\Command;
|
|
use App\Classes\Jobs\FetchLoadedContainersFromVTPortalJob;
|
|
use App\Classes\Jobs\FetchWarehouseReceiveListFromVTPortalJob;
|
|
|
|
class CurlVTV2Command extends Command
|
|
{
|
|
/**
|
|
* The name and signature of the console command.
|
|
*
|
|
* @var string
|
|
*/
|
|
|
|
protected $signature = 'curl-vt-command';
|
|
// php artisan queue:work
|
|
|
|
/**
|
|
* The console command description.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $description = 'Command description';
|
|
|
|
/**
|
|
* Create a new command instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
/**
|
|
* Execute the console command.
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function handle()
|
|
{
|
|
return FetchWarehouseReceiveListFromVTPortalJob::withChain([
|
|
new FetchLoadedContainersFromVTPortalJob,
|
|
])->dispatch();
|
|
}
|
|
}
|