From 36564d0d58c9d1e2f7489a4eb9275d2c3fcdd431 Mon Sep 17 00:00:00 2001 From: Matthew Thomas Date: Wed, 25 Oct 2017 16:44:02 +0100 Subject: [PATCH] Missing use reference This example is missing the use statement for a class that is created later on in the code examples. --- security/api_key_authentication.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/security/api_key_authentication.rst b/security/api_key_authentication.rst index 9953099c7b0..3ac4a6ef6f6 100644 --- a/security/api_key_authentication.rst +++ b/security/api_key_authentication.rst @@ -27,6 +27,7 @@ value and then a User object is created:: // src/AppBundle/Security/ApiKeyAuthenticator.php namespace AppBundle\Security; + use AppBundle\Security\ApiKeyUserProvider; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\Security\Core\Authentication\Token\PreAuthenticatedToken; use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;