Files
ntspi-app/app/Console/Commands/TransferUsers.php
T
2026-03-20 21:47:02 +05:00

32 lines
549 B
PHP
Executable File

<?php
namespace App\Console\Commands;
use App\Jobs\ImportUsers;
use Illuminate\Console\Command;
class TransferUsers extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'import:transfer-users';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Command description';
/**
* Execute the console command.
*/
public function handle()
{
ImportUsers::dispatch();
}
}