Files
shipping-portal/app/Console/Commands/V2/CurlYdOrderListV2Command.php
T
2023-12-28 02:09:42 +08:00

46 lines
817 B
PHP

<?php
namespace App\Console\Commands\V2;
use App\Classes\Jobs\FetchOrdersFromYDPortalJob;
use Illuminate\Console\Command;
class CurlYdOrderListV2Command extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'curl-yd-order-list-command';
/**
* 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 FetchOrdersFromYDPortalJob::withChain([])->dispatch();
}
}