From 0a8ba937b727222bf5a02e15acd9264497c42899 Mon Sep 17 00:00:00 2001 From: Florent Destremau Date: Mon, 27 Feb 2023 10:32:41 +0100 Subject: [PATCH] Removed @internal tag on TraceableAuthenticator::getAuthenticator() --- .../Http/Authenticator/Debug/TraceableAuthenticator.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/Symfony/Component/Security/Http/Authenticator/Debug/TraceableAuthenticator.php b/src/Symfony/Component/Security/Http/Authenticator/Debug/TraceableAuthenticator.php index 4b77d9c49f138..40ee23a273aaf 100644 --- a/src/Symfony/Component/Security/Http/Authenticator/Debug/TraceableAuthenticator.php +++ b/src/Symfony/Component/Security/Http/Authenticator/Debug/TraceableAuthenticator.php @@ -100,9 +100,6 @@ public function isInteractive(): bool return $this->authenticator instanceof InteractiveAuthenticatorInterface && $this->authenticator->isInteractive(); } - /** - * @internal - */ public function getAuthenticator(): AuthenticatorInterface { return $this->authenticator;