From 92610e3fdbde73d2e1dec8c57068867f93435148 Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Wed, 23 Dec 2015 22:21:50 +0100 Subject: [PATCH] [#5993] fix doubled "interface" --- cookbook/security/entity_provider.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cookbook/security/entity_provider.rst b/cookbook/security/entity_provider.rst index 48f6c6b8685..32c59cc9552 100644 --- a/cookbook/security/entity_provider.rst +++ b/cookbook/security/entity_provider.rst @@ -460,7 +460,7 @@ interface only requires one method: ``loadUserByUsername($username)``:: .. versionadded:: 2.8 The :class:`Symfony\\Bridge\\Doctrine\\Security\\User\\UserLoaderInterface` - interface was introduced in 2.8. Prior to Symfony 2.8, you had to implement + was introduced in 2.8. Prior to Symfony 2.8, you had to implement ``Symfony\Component\Security\Core\User\UserProviderInterface``. .. tip::