summaryrefslogtreecommitdiffstats
path: root/lib/public
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2013-01-15 14:01:48 -0800
committerThomas Müller <thomas.mueller@tmit.eu>2013-01-15 14:01:48 -0800
commit4668f8c86e4477c05049f39ebc387115add61264 (patch)
treeb0743fa20560dd302601e9901830a459e1c19b16 /lib/public
parent65ef780ed69dcbddf803c57d720d625fb2848d84 (diff)
parentcc00c54f6a2561c6bafa51e8f4da53ae4773922b (diff)
downloadnextcloud-server-4668f8c86e4477c05049f39ebc387115add61264.tar.gz
nextcloud-server-4668f8c86e4477c05049f39ebc387115add61264.zip
Merge pull request #1178 from owncloud/return_true_because_of_ponies
Remove uneeded return
Diffstat (limited to 'lib/public')
-rw-r--r--lib/public/user.php4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/public/user.php b/lib/public/user.php
index 9e50115ab70..e297b716dc2 100644
--- a/lib/public/user.php
+++ b/lib/public/user.php
@@ -73,12 +73,10 @@ class User {
}
/**
* @brief Loggs the user out including all the session data
- * @returns true
- *
* Logout, destroys session
*/
public static function logout() {
- return \OC_USER::logout();
+ \OC_USER::logout();
}
/**