updateService = $updateService; } public function checkUpdate() { return $this->success($this->updateService->checkForUpdates()); } public function executeUpdate() { $result = $this->updateService->executeUpdate(); return $result['success'] ? $this->success($result) : $this->fail([500, $result['message']]); } }