From 1470b2bc1504bc2e7f9c7191dd1acd61123b3b74 Mon Sep 17 00:00:00 2001 From: Alexis Lefebvre Date: Sat, 29 Nov 2025 12:34:03 +0100 Subject: [PATCH] fix: `Authenticator` must implement `\Stringable` --- src/Security/Model/Authenticator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Security/Model/Authenticator.php b/src/Security/Model/Authenticator.php index 307539e58..8f6c7892e 100644 --- a/src/Security/Model/Authenticator.php +++ b/src/Security/Model/Authenticator.php @@ -16,7 +16,7 @@ * * @internal */ -final class Authenticator +final class Authenticator implements \Stringable { public function __construct( public AuthenticatorType $type,