From bfa9d8faa5bc044134e7161e6de473b63012bffc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elias=20H=C3=A4u=C3=9Fler?= <elias@haeussler.dev> Date: Tue, 21 Feb 2023 13:49:33 +0100 Subject: [PATCH] [TASK] Add iterable type to `PageErrorHandlerInterface::handlePageError` MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The `PageErrorHandlerInterface` is often implemented in case a custom error handler is used in site configuration. Static code analysis may complain about missing iterable types in implementations. Thus, we now provide the iterable types to ease the implementation effort in TYPO3 projects. Resolves: #100004 Releases: main, 12.4 Change-Id: I9734ce09c091f6d0e6f68d19019e8d77d1ffc685 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/79733 Tested-by: core-ci <typo3@b13.com> Tested-by: Stefan Bürk <stefan@buerk.tech> Reviewed-by: Stefan Bürk <stefan@buerk.tech> --- .../Error/PageErrorHandler/PageErrorHandlerInterface.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/typo3/sysext/core/Classes/Error/PageErrorHandler/PageErrorHandlerInterface.php b/typo3/sysext/core/Classes/Error/PageErrorHandler/PageErrorHandlerInterface.php index 4a0b19702e6f..e9dd1e8b89af 100644 --- a/typo3/sysext/core/Classes/Error/PageErrorHandler/PageErrorHandlerInterface.php +++ b/typo3/sysext/core/Classes/Error/PageErrorHandler/PageErrorHandlerInterface.php @@ -27,5 +27,8 @@ use Psr\Http\Message\ServerRequestInterface; */ interface PageErrorHandlerInterface { + /** + * @param array<string, mixed> $reasons + */ public function handlePageError(ServerRequestInterface $request, string $message, array $reasons = []): ResponseInterface; } -- GitLab