From 1bf5ab35a8838161060e3270673e5febee101925 Mon Sep 17 00:00:00 2001 From: Carl Schwan Date: Mon, 14 Mar 2022 09:35:01 +0100 Subject: Use "use" to import namespaces Signed-off-by: Carl Schwan --- apps/user_ldap/lib/User_LDAP.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'apps/user_ldap/lib') diff --git a/apps/user_ldap/lib/User_LDAP.php b/apps/user_ldap/lib/User_LDAP.php index f0525daa974..5a445100052 100644 --- a/apps/user_ldap/lib/User_LDAP.php +++ b/apps/user_ldap/lib/User_LDAP.php @@ -48,9 +48,11 @@ use OCP\IConfig; use OCP\IUserSession; use OCP\Notification\IManager as INotificationManager; use OCP\User\Backend\ICountUsersBackend; +use OCP\IUserBackend; +use OCP\UserInterface; use Psr\Log\LoggerInterface; -class User_LDAP extends BackendUtility implements \OCP\IUserBackend, \OCP\UserInterface, IUserLDAP, ICountUsersBackend { +class User_LDAP extends BackendUtility implements IUserBackend, UserInterface, IUserLDAP, ICountUsersBackend { /** @var \OCP\IConfig */ protected $ocConfig; -- cgit v1.2.3