Files
exchange-2.0/app/Console/Commands/V2/AuditAndUpdateWallletBalanceV2Command.php

35 lines
700 B
PHP

<?php
namespace App\Console\Commands\V2;
use App\Classes\Jobs\Commands\V2\AuditAndUpdateWallletBalanceV2CommandJob;
use Illuminate\Console\Command;
class AuditAndUpdateWallletBalanceV2Command extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'audit-wallet-balance-command';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Audit and Update Wallet Balance';
/**
* Execute the console command.
*
* @return int
*/
public function handle()
{
AuditAndUpdateWallletBalanceV2CommandJob::dispatch();
}
}