Files
roxane/app/Console/Commands/CreateISPWebAccounts.php
Nebulae 7aef0210fd
All checks were successful
Deploy Roxane to Preprod / deploy (push) Successful in 1m33s
init(ISPWeb account creation)
2026-08-18 19:12:51 +02:00

31 lines
559 B
PHP

<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
class CreateISPWebAccounts extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'ext:create-ispweb-accounts';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Créer les comptes ISPWeb des membres en fonction de leur domaine';
/**
* Execute the console command.
*/
public function handle()
{
//
}
}