model = $accountLocking; } public function __invoke(ServerRequest $request): void { $this->response->setAjax(true); /** @var string $userName */ $userName = $request->getParsedBodyParam('username'); /** @var string $hostName */ $hostName = $request->getParsedBodyParam('hostname'); try { $this->model->unlock($userName, $hostName); } catch (Throwable $exception) { $this->response->setHttpResponseCode(400); $this->response->setRequestStatus(false); $this->response->addJSON(['message' => Message::error($exception->getMessage())]); return; } $message = Message::success(__('The account %s@%s has been successfully unlocked.')); $message->addParam($userName); $message->addParam($hostName); $this->response->addJSON(['message' => $message]); } }