repository = $repository; } /** * Mark a server for rebuild on next boot cycle. This just makes an empty patch * request to Wings which will automatically mark the container as requiring a rebuild * on the next boot as a result. * * @param \Pterodactyl\Models\Server $server * * @throws \Pterodactyl\Exceptions\Http\Connection\DaemonConnectionException */ public function handle(Server $server) { try { $this->repository->setServer($server)->update([]); } catch (RequestException $exception) { throw new DaemonConnectionException($exception); } } }