(string $token, bool $wrongPassword)
| 249 | } |
| 250 | |
| 251 | private function passwordPrompt(string $token, bool $wrongPassword): TemplateResponse |
| 252 | { |
| 253 | return new TemplateResponse($this->appName, 'authenticate', [ |
| 254 | 'wrongpw' => $wrongPassword, |
| 255 | 'action' => $this->urlGenerator->linkToRoute($this->appName . '.page.authenticatePassword', ['token' => $token]), |
| 256 | ], 'guest'); |
| 257 | } |
| 258 | |
| 259 | private function redirectToLogin(string $token): RedirectResponse |
| 260 | { |
no outgoing calls
no test coverage detected