summaryrefslogtreecommitdiffstats
path: root/lib/public/user.php
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2015-04-19 01:04:59 +0200
committerMorris Jobke <hey@morrisjobke.de>2015-04-19 01:04:59 +0200
commitc056c5201061670b0a51d4bd242e704e00050d4b (patch)
treedf3a2f62582ce22f0ea28e3a62b0d0457cdc1cd4 /lib/public/user.php
parentcdf82909b8225a885fbf92b78208fb1fe258853e (diff)
downloadnextcloud-server-c056c5201061670b0a51d4bd242e704e00050d4b.tar.gz
nextcloud-server-c056c5201061670b0a51d4bd242e704e00050d4b.zip
Add version to @deprecated tags
Diffstat (limited to 'lib/public/user.php')
-rw-r--r--lib/public/user.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/public/user.php b/lib/public/user.php
index c21a4b01ea5..0b5fb9565e4 100644
--- a/lib/public/user.php
+++ b/lib/public/user.php
@@ -48,7 +48,7 @@ class User {
/**
* Get the user id of the user currently logged in.
* @return string uid or false
- * @deprecated Use \OC::$server->getUserSession()->getUser()->getUID()
+ * @deprecated 8.0.0 Use \OC::$server->getUserSession()->getUser()->getUID()
* @since 5.0.0
*/
public static function getUser() {
@@ -111,7 +111,7 @@ class User {
/**
* Logs the user out including all the session data
* Logout, destroys session
- * @deprecated Use \OC::$server->getUserSession()->logout();
+ * @deprecated 8.0.0 Use \OC::$server->getUserSession()->logout();
* @since 5.0.0
*/
public static function logout() {
@@ -125,7 +125,7 @@ class User {
* @return string|false username on success, false otherwise
*
* Check if the password is correct without logging in the user
- * @deprecated Use \OC::$server->getUserManager()->checkPassword();
+ * @deprecated 8.0.0 Use \OC::$server->getUserManager()->checkPassword();
* @since 5.0.0
*/
public static function checkPassword( $uid, $password ) {