From 195cfb61e5dcb906daf4cae2cad516fde26fe5b8 Mon Sep 17 00:00:00 2001 From: Mark Schmale Date: Thu, 21 Jul 2016 13:55:13 +0200 Subject: [PATCH] fixed missing level in namespace The link to the UserCheckerInterface seems to be wrong. --- cookbook/security/user_checkers.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cookbook/security/user_checkers.rst b/cookbook/security/user_checkers.rst index f848d32178a..4dae7980dfe 100644 --- a/cookbook/security/user_checkers.rst +++ b/cookbook/security/user_checkers.rst @@ -12,7 +12,7 @@ Creating a Custom User Checker ------------------------------ User checkers are classes that must implement the -:class:`Symfony\\Component\\Security\\Core\\UserCheckerInterface`. This interface +:class:`Symfony\\Component\\Security\\Core\\User\\UserCheckerInterface`. This interface defines two methods called ``checkPreAuth()`` and ``checkPostAuth()`` to perform checks before and after user authentication. If one or more conditions are not met, an exception should be thrown which extends the