From 3e95b3e8f821a585fa46a4fecd236da2f621a449 Mon Sep 17 00:00:00 2001 From: Thomas Landauer Date: Sun, 14 Aug 2022 15:19:45 +0200 Subject: [PATCH] Adding missing `use` --- security/custom_authenticator.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/security/custom_authenticator.rst b/security/custom_authenticator.rst index 4e38e01e82b..6865eb28f01 100644 --- a/security/custom_authenticator.rst +++ b/security/custom_authenticator.rst @@ -261,6 +261,7 @@ The following credential classes are supported by default: :class:`Symfony\\Component\\Security\\Http\\Authenticator\\Passport\\Credentials\\CustomCredentials` Allows a custom closure to check credentials:: + use Symfony\Component\Security\Core\User\UserInterface; use Symfony\Component\Security\Http\Authenticator\Passport\Credentials\CustomCredentials; // ...