mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-19 20:43:56 +00:00
24 lines
505 B
PHP
24 lines
505 B
PHP
<?php
|
|
|
|
namespace App\Console\Commands\V2;
|
|
|
|
use App\Classes\Jobs\Commands\V2\HouseKeepingS3FilesV2CommandJob;
|
|
use Illuminate\Console\Command;
|
|
|
|
class HouseKeepingS3FilesV2Command extends Command
|
|
{
|
|
protected $signature = 'housekeeping-s3-files-command';
|
|
|
|
protected $description = 'Housekeeping temporary files in S3 Bucket';
|
|
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
public function handle()
|
|
{
|
|
HouseKeepingS3FilesV2CommandJob::dispatch();
|
|
}
|
|
}
|