Files
exchange-2.0/app/Console/Commands/V2/UpdateBillGroupAndMoreV2Command.php
T

44 lines
859 B
PHP

<?php
namespace App\Console\Commands\V2;
use Illuminate\Console\Command;
use App\Classes\Jobs\Commands\V2\UpdateBillGroupAndMoreV2CommandJob;
class UpdateBillGroupAndMoreV2Command extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'update-bill-group-and-more-command';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Update bill group and group to include transfer fee calculation';
/**
* Create a new command instance.
*
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return int
*/
public function handle()
{
UpdateBillGroupAndMoreV2CommandJob::dispatch();
}
}