From 3e0a0f4cb57127b1c9ae63e93f749e7993ba99a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me?= Date: Wed, 23 May 2018 12:02:33 +0200 Subject: [PATCH] Fix missing use in UserInterface Fix missing Role use used for getRoles return type. --- src/Symfony/Component/Security/Core/User/UserInterface.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Symfony/Component/Security/Core/User/UserInterface.php b/src/Symfony/Component/Security/Core/User/UserInterface.php index 0a359d079d..0ce8eca92a 100644 --- a/src/Symfony/Component/Security/Core/User/UserInterface.php +++ b/src/Symfony/Component/Security/Core/User/UserInterface.php @@ -11,6 +11,8 @@ namespace Symfony\Component\Security\Core\User; +use Symfony\Component\Security\Core\Role\Role; + /** * Represents the interface that all user classes must implement. *