PhyrePanel-mirror/web/app/Console/Commands/RunDomainRepair.php
2024-09-10 16:52:01 +03:00

33 lines
621 B
PHP

<?php
namespace App\Console\Commands;
use App\Jobs\ApacheBuild;
use App\Models\Domain;
use Illuminate\Console\Command;
class RunDomainRepair extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'phyre:run-domain-repair';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Command description';
/**
* Execute the console command.
*/
public function handle()
{
$apacheBuild = new ApacheBuild(true);
$apacheBuild->handle();
}
}