diff options
author | Joas Schilling <coding@schilljs.com> | 2016-09-09 16:52:10 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2016-09-12 16:48:11 +0200 |
commit | 01cf85e4e5e610bf667e4a55ff9647542aa926d1 (patch) | |
tree | 2e4f7902aac2b115833d104ab42369c9e5895343 /apps/user_ldap/lib/Jobs | |
parent | a2668b11e58d1e6098d5c6c419594af8dee134ee (diff) | |
download | nextcloud-server-01cf85e4e5e610bf667e4a55ff9647542aa926d1.tar.gz nextcloud-server-01cf85e4e5e610bf667e4a55ff9647542aa926d1.zip |
Fix the User_LDAP app
Diffstat (limited to 'apps/user_ldap/lib/Jobs')
-rw-r--r-- | apps/user_ldap/lib/Jobs/CleanUp.php | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/apps/user_ldap/lib/Jobs/CleanUp.php b/apps/user_ldap/lib/Jobs/CleanUp.php index 21c3ece8662..b91fed14dd6 100644 --- a/apps/user_ldap/lib/Jobs/CleanUp.php +++ b/apps/user_ldap/lib/Jobs/CleanUp.php @@ -24,13 +24,13 @@ namespace OCA\User_LDAP\Jobs; -use \OC\BackgroundJob\TimedJob; -use \OCA\User_LDAP\User_LDAP; -use \OCA\User_LDAP\User_Proxy; -use \OCA\User_LDAP\Helper; -use \OCA\User_LDAP\LDAP; -use \OCA\User_LDAP\User\DeletedUsersIndex; -use \OCA\User_LDAP\Mapping\UserMapping; +use OC\BackgroundJob\TimedJob; +use OCA\User_LDAP\Helper; +use OCA\User_LDAP\LDAP; +use OCA\User_LDAP\Mapping\UserMapping; +use OCA\User_LDAP\User_LDAP; +use OCA\User_LDAP\User_Proxy; +use OCA\User_LDAP\User\DeletedUsersIndex; /** * Class CleanUp |