mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/shipping-portal.git
synced 2026-08-21 13:34:00 +00:00
47 lines
903 B
PHP
47 lines
903 B
PHP
<?php
|
|
|
|
namespace App\Console\Commands\V2;
|
|
|
|
|
|
use App\Classes\Jobs\Commands\V2\FixGroupPaymentProblemV2CommandJob;
|
|
use Illuminate\Console\Command;
|
|
|
|
class FixGroupPaymentProblemV2Command extends Command
|
|
{
|
|
/**
|
|
* The name and signature of the console command.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $signature = 'fix-group-payment-problem-command';
|
|
|
|
/**
|
|
* The console command description.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $description = 'This is a one time data patch for a problem result from Storage Invoice Implementation';
|
|
|
|
|
|
/**
|
|
* Create a new command instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
|
|
/**
|
|
* Execute the console command.
|
|
*
|
|
* @return int
|
|
*/
|
|
public function handle()
|
|
{
|
|
FixGroupPaymentProblemV2CommandJob::dispatch();
|
|
}
|
|
}
|