Files
shipping-portal/app/Console/Commands/V2/FixPaymentApprovalTimedOutErrorV2Command.php
T
2025-02-01 21:09:44 +08:00

48 lines
953 B
PHP

<?php
namespace App\Console\Commands\V2;
use App\Classes\Jobs\Commands\V2\FixPaymentApprovalTimedOutErrorV2CommandJob;
use Illuminate\Console\Command;
class FixPaymentApprovalTimedOutErrorV2Command extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'fix-payment-approval-timed-out-error-command';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Fix payment approval timed out error';
protected $output = null;
protected $outputArray = [];
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return int
*/
public function handle()
{
FixPaymentApprovalTimedOutErrorV2CommandJob::dispatch();
}
}