From 14926e73625515c15f0dfec04390bf8ec5ac38bf Mon Sep 17 00:00:00 2001 From: mscherer Date: Thu, 9 Apr 2026 13:36:04 +0200 Subject: [PATCH] Fix docs indentation in auth service example Align the unauthenticatedRedirect array in docs/en/index.md with the surrounding examples. --- docs/en/index.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/en/index.md b/docs/en/index.md index 36e2e969..ffc08d3b 100644 --- a/docs/en/index.md +++ b/docs/en/index.md @@ -84,10 +84,10 @@ public function getAuthenticationService(ServerRequestInterface $request): Authe // Define where users should be redirected to when they are not authenticated $service->setConfig([ 'unauthenticatedRedirect' => [ - 'prefix' => false, - 'plugin' => false, - 'controller' => 'Users', - 'action' => 'login', + 'prefix' => false, + 'plugin' => false, + 'controller' => 'Users', + 'action' => 'login', ], 'queryParam' => 'redirect', ]);