site = $site; } /** * @throws Throwable */ public function handle(): void { $this->site->server->ssh()->exec( new EditFileCommand( $this->site->path.'/.env', $this->site->env ), 'update-env', $this->site->id ); event( new Broadcast('deploy-site-env-finished', [ 'site' => $this->site, ]) ); } public function failed(): void { event( new Broadcast('deploy-site-env-failed', [ 'site' => $this->site, ]) ); } }