Files
shipping-portal/app/Console/Commands/V2/OneTimeTransactionFixBillplzFailedCbV2Command.php
T

49 lines
1021 B
PHP

<?php
namespace App\Console\Commands\V2;
use App\Classes\Jobs\Commands\V2\OneTimeTransactionFixBillplzFailedCbV2CommandJob;
use Illuminate\Console\Command;
class OneTimeTransactionFixBillplzFailedCbV2Command extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'one-time-transaction-fix-billplz-failed-callback-command';
/**
* The console command description.
*
* @var string
*/
protected $description = 'This is a one time fix billplz failed callback for transaction with id 15205';
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()
{
OneTimeTransactionFixBillplzFailedCbV2CommandJob::dispatch();
}
}