mirror of
https://github.com/PhyreApps/PhyrePanel.git
synced 2024-11-22 15:40:25 +00:00
33 lines
621 B
PHP
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();
|
|
}
|
|
}
|