diff options
author | Roeland Jago Douma <rullzer@owncloud.com> | 2016-05-04 09:09:01 +0200 |
---|---|---|
committer | Roeland Jago Douma <rullzer@owncloud.com> | 2016-05-10 19:53:36 +0200 |
commit | f6ee738ba82244447d822982aff93494193f93ab (patch) | |
tree | 7285ed39a8e67532aaf2b610b7561f6638604d41 /tests/lib/util/user/dummy.php | |
parent | 9e1d9871a8f45faa1d7dbbb42046bd0919a88a5d (diff) | |
download | nextcloud-server-f6ee738ba82244447d822982aff93494193f93ab.tar.gz nextcloud-server-f6ee738ba82244447d822982aff93494193f93ab.zip |
Add \OC\User\Backend
Since some apps (ldap et al) still depend on OC_User_Backend this seemed
like the cleanest approach.
Diffstat (limited to 'tests/lib/util/user/dummy.php')
-rw-r--r-- | tests/lib/util/user/dummy.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/lib/util/user/dummy.php b/tests/lib/util/user/dummy.php index 6e23e22ab67..ea47f5d7d15 100644 --- a/tests/lib/util/user/dummy.php +++ b/tests/lib/util/user/dummy.php @@ -27,12 +27,12 @@ namespace Test\Util\User; -use OC_User_Backend; +use \OC\User\Backend; /** * dummy user backend, does not keep state, only for testing use */ -class Dummy extends OC_User_Backend implements \OCP\IUserBackend { +class Dummy extends Backend implements \OCP\IUserBackend { private $users = array(); private $displayNames = array(); |