diff options
author | Arthur Schiwon <blizzz@owncloud.com> | 2012-07-20 13:09:09 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@owncloud.com> | 2012-07-25 12:56:07 +0200 |
commit | fdcbc23ed6bb520f50c7c4ce5f169e6716e1c5f0 (patch) | |
tree | 8cf8c9cb9afafc2005698fc8068791f1f0787417 /lib/user/backend.php | |
parent | d28be8de64a3fe6ab52782a4aaeaaf96565a8012 (diff) | |
download | nextcloud-server-fdcbc23ed6bb520f50c7c4ce5f169e6716e1c5f0.tar.gz nextcloud-server-fdcbc23ed6bb520f50c7c4ce5f169e6716e1c5f0.zip |
define an interface for the User Backend
Diffstat (limited to 'lib/user/backend.php')
-rw-r--r-- | lib/user/backend.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/user/backend.php b/lib/user/backend.php index be068a63ce0..daa942d261c 100644 --- a/lib/user/backend.php +++ b/lib/user/backend.php @@ -42,7 +42,7 @@ define('OC_USER_BACKEND_CHECK_PASSWORD', 0x000100); * * Subclass this for your own backends, and see OC_User_Example for descriptions */ -abstract class OC_User_Backend { +abstract class OC_User_Backend implements OC_User_Interface { protected $possibleActions = array( OC_USER_BACKEND_CREATE_USER => 'createUser', |