Skip to content

Commit 10135a5

Browse files
committed
Cs fix
1 parent 18106d9 commit 10135a5

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/Interfaces/GenericErrorPageRendererInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ interface GenericErrorPageRendererInterface
1616
public function renderHtmlProdErrorPage(
1717
int $statusCode,
1818
?string $safeExceptionMessage,
19-
?string $errorReportEmailAddress
19+
?string $errorReportEmailAddress,
2020
): string;
2121
}

src/Middleware/NonFatalErrorHandlingMiddleware.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
{
2020
public function __construct(
2121
private bool $displayErrorDetails,
22-
private ?LoggerInterface $logger
22+
private ?LoggerInterface $logger,
2323
) {
2424
}
2525

src/Renderer/GenericErrorPageRenderer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
public function renderHtmlProdErrorPage(
1919
int $statusCode,
2020
?string $safeExceptionMessage = null,
21-
?string $errorReportEmailAddress = null
21+
?string $errorReportEmailAddress = null,
2222
): string {
2323
switch ($statusCode) {
2424
case 404:

src/Renderer/JsonErrorRenderer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public function renderJsonErrorResponse(
1313
ResponseInterface $response,
1414
bool $displayErrorDetails = false,
1515
int $statusCode = 500,
16-
string $reasonPhrase = 'Internal Server Error'
16+
string $reasonPhrase = 'Internal Server Error',
1717
): ResponseInterface {
1818
$response = $response->withHeader('Content-Type', 'application/json');
1919

0 commit comments

Comments
 (0)