Files
portal/app/Console/Commands/CurlYdOrderListCommand.php
T
2021-12-16 21:46:33 +08:00

49 lines
858 B
PHP

<?php
namespace App\Console\Commands;
use App\Models\State;
use App\Http\Helpers\General;
use Illuminate\Console\Command;
use App\Jobs\CurlYdOrderListJob;
class CurlYdOrderListCommand extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'command:curlYdOrderListCommand';
// 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()
{
CurlYdOrderListJob::dispatch();
}
}