use blade as conmmands template (#444)

* use blade as conmmands template

* fix lint

* fix ssl
This commit is contained in:
Saeed Vaziry
2025-01-27 21:27:58 +01:00
committed by GitHub
parent a73476c1dd
commit cdbde063f0
208 changed files with 1080 additions and 1012 deletions

View File

@ -4,6 +4,7 @@
use App\Enums\SiteFeature;
use App\Exceptions\FailedToDeployGitKey;
use App\Exceptions\SSHError;
use App\SSH\Composer\Composer;
use App\SSH\Git\Git;
use App\SSH\Services\Webserver\Webserver;
@ -73,10 +74,11 @@ public function data(array $input): array
/**
* @throws FailedToDeployGitKey
* @throws SSHError
*/
public function install(): void
{
$this->site->isolate();
$this->isolate();
/** @var Webserver $webserver */
$webserver = $this->site->server->webserver()->handler();