ssl = $ssl; } public function handle(): void { $this->ssl->site->server->webserver()->handler()->removeSSL($this->ssl); $this->ssl->delete(); event( new Broadcast('remove-ssl-finished', [ 'ssl' => $this->ssl, ]) ); } public function failed(): void { $this->ssl->status = 'failed'; $this->ssl->save(); event( new Broadcast('remove-ssl-failed', [ 'ssl' => $this->ssl, ]) ); } }