]> source.dussan.org Git - nextcloud-server.git/commitdiff
style fixes for public user api
authorGeorg Ehrke <dev@georgswebsite.de>
Sat, 8 Sep 2012 14:17:01 +0000 (16:17 +0200)
committerGeorg Ehrke <dev@georgswebsite.de>
Sat, 8 Sep 2012 14:17:01 +0000 (16:17 +0200)
lib/public/user.php

index b530321f21df3da42bbe81336cce96c46b0de5c5..b320ce8ea0c4ba21465675c83c20a50341d814e1 100644 (file)
@@ -34,8 +34,6 @@ namespace OCP;
  * This class provides access to the user management. You can get information about the currently logged in user and the permissions for example
  */
 class User {
-
-
        /**
         * @brief get the user id of the user currently logged in.
         * @return string uid or false
@@ -44,7 +42,6 @@ class User {
                return \OC_USER::getUser();
        }
 
-
        /**
         * @brief Get a list of all users
         * @returns array with all uids
@@ -55,7 +52,6 @@ class User {
                return \OC_USER::getUsers();
        }
 
-
        /**
         * @brief Check if the user is logged in
         * @returns true/false
@@ -66,7 +62,6 @@ class User {
                return \OC_USER::isLoggedIn();
        }
 
-
        /**
         * @brief check if a user exists
         * @param string $uid the username
@@ -76,7 +71,6 @@ class User {
                return \OC_USER::userExists( $uid );
        }
 
-
        /**
         * @brief Loggs the user out including all the session data
         * @returns true
@@ -87,7 +81,6 @@ class User {
                return \OC_USER::logout();
        }
 
-
        /**
         * @brief Check if the password is correct
         * @param $uid The username
@@ -100,23 +93,18 @@ class User {
                return \OC_USER::checkPassword( $uid, $password );
        }
 
+       /**
+       * Check if the user is a admin, redirects to home if not
+       */
+       public static function checkAdminUser() {
+               \OC_Util::checkAdminUser();
+       }
 
-        /**
-        * Check if the user is a admin, redirects to home if not
-        */
-        public static function checkAdminUser() {
-                \OC_Util::checkAdminUser();
-        }
-
-
-        /**
-        * Check if the user is logged in, redirects to home if not. With
-        * redirect URL parameter to the request URI.
-        */
-        public static function checkLoggedIn() {
-                \OC_Util::checkLoggedIn();
-        }
-
-
-
+       /**
+       * Check if the user is logged in, redirects to home if not. With
+       * redirect URL parameter to the request URI.
+       */
+       public static function checkLoggedIn() {
+               \OC_Util::checkLoggedIn();
+       }
 }