summaryrefslogtreecommitdiffstats
path: root/lib/private/user/interface.php
diff options
context:
space:
mode:
authorRobin McCorkell <rmccorkell@karoshi.org.uk>2014-05-11 18:05:28 +0100
committerRobin McCorkell <rmccorkell@karoshi.org.uk>2014-05-13 19:08:14 +0100
commitb653ad164b83afbc07d7a82d2e4461dace28ba6a (patch)
treee1923c2b5116f0f8a242491f949d56db63288e1a /lib/private/user/interface.php
parentf5bc680f9c725c0aea166f3fc3eee8e0bcf5427c (diff)
downloadnextcloud-server-b653ad164b83afbc07d7a82d2e4461dace28ba6a.tar.gz
nextcloud-server-b653ad164b83afbc07d7a82d2e4461dace28ba6a.zip
Replace @returns with @return, in /lib
Diffstat (limited to 'lib/private/user/interface.php')
-rw-r--r--lib/private/user/interface.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/private/user/interface.php b/lib/private/user/interface.php
index cdcab3e5d00..eee18aea167 100644
--- a/lib/private/user/interface.php
+++ b/lib/private/user/interface.php
@@ -26,7 +26,7 @@ interface OC_User_Interface {
/**
* @brief Check if backend implements actions
* @param $actions bitwise-or'ed actions
- * @returns boolean
+ * @return boolean
*
* Returns the supported actions as int to be
* compared with OC_USER_BACKEND_CREATE_USER etc.
@@ -37,7 +37,7 @@ interface OC_User_Interface {
/**
* @brief delete a user
* @param $uid The username of the user to delete
- * @returns true/false
+ * @return true/false
*
* Deletes a user
* @return boolean
@@ -46,7 +46,7 @@ interface OC_User_Interface {
/**
* @brief Get a list of all users
- * @returns array with all uids
+ * @return array with all uids
*
* Get a list of all users.
*/
@@ -68,7 +68,7 @@ interface OC_User_Interface {
/**
* @brief Get a list of all display names
- * @returns array with all displayNames (value) and the corresponding uids (key)
+ * @return array with all displayNames (value) and the corresponding uids (key)
*
* Get a list of all display names and user ids.
*/