Files
shipping-portal/app/Console/Commands/V2/AuditBillplzPaymentV2Command.php
T
2023-12-28 01:58:49 +08:00

44 lines
873 B
PHP

<?php
namespace App\Console\Commands\V2;
use App\Classes\Jobs\Commands\V2\AuditBillplzPaymentV2CommandJob;
use Illuminate\Console\Command;
class AuditBillplzPaymentV2Command extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'billplz-payment-audit-command';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Check all failed payment in billplz, but marked at success at our system';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return int
*/
public function handle()
{
AuditBillplzPaymentV2CommandJob::dispatch();
}
}