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

48 lines
905 B
PHP

<?php
namespace App\Console\Commands\V2;
use App\Classes\Jobs\Commands\V2\OneTimeTestVoucherifyEmailV2CommandJob;
use Illuminate\Console\Command;
class OneTimeTestVoucherifyEmailV2Command extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'one-time-test-voucherify-email-command';
/**
* The console command description.
*
* @var string
*/
protected $description = 'One time test sending voucherify email to see out of alignment issue';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
OneTimeTestVoucherifyEmailV2CommandJob::dispatch();
}
}