mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/shipping-portal.git
synced 2026-08-22 14:04:06 +00:00
39 lines
818 B
PHP
39 lines
818 B
PHP
<?php
|
|
|
|
namespace App\Console\Commands\V2;
|
|
|
|
use App\Classes\Jobs\Commands\V2\SuccessUpdatePaymentStatusV2CommandJob;
|
|
use Illuminate\Console\Command;
|
|
|
|
class SuccessUpdatePaymentStatusV2Command extends Command //SuccessUpdatePaymentStatusButFailedCallbackV2Command
|
|
{
|
|
/**
|
|
* The name and signature of the console command.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $signature = 'fix-invoice-status';
|
|
|
|
/**
|
|
* The console command description.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $description = 'Success Updated Payment Status But Inoie stat';
|
|
|
|
protected $output = null;
|
|
|
|
protected $outputArray = [];
|
|
|
|
|
|
/**
|
|
* Execute the console command.
|
|
*
|
|
* @return int
|
|
*/
|
|
public function handle()
|
|
{
|
|
SuccessUpdatePaymentStatusV2CommandJob::dispatch();
|
|
}
|
|
}
|