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

35 lines
727 B
PHP

<?php
namespace App\Console\Commands\V2;
use App\Classes\Jobs\Commands\V2\RemoveSeasonalSegmentCompanyV2CommandJob;
use Illuminate\Console\Command;
class RemoveSeasonalSegmentCompanyV2Command extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'seasonal-segmant-company-remove-command';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Perform soft delete on Seasonal Segment Company';
/**
* Execute the console command.
*
* @return int
*/
public function handle()
{
RemoveSeasonalSegmentCompanyV2CommandJob::dispatch();
}
}