diff options
author | Frank Karlitschek <frank@owncloud.org> | 2014-04-21 20:13:45 +0200 |
---|---|---|
committer | Frank Karlitschek <frank@owncloud.org> | 2014-04-21 20:13:45 +0200 |
commit | ee70eb0808809abe5fe8b58a6b730db8a7ce997f (patch) | |
tree | b33e14f6bce285890135bce4bdd3ab8099d6819b /lib/private/json.php | |
parent | 4fe5ca1908757781872133c7140f4c8848e94ac6 (diff) | |
parent | e88731a477991f54120939724da3c8a455c48b97 (diff) | |
download | nextcloud-server-ee70eb0808809abe5fe8b58a6b730db8a7ce997f.tar.gz nextcloud-server-ee70eb0808809abe5fe8b58a6b730db8a7ce997f.zip |
Merge pull request #8287 from owncloud/phpdoc-base
Some more PHPDoc fixes
Diffstat (limited to 'lib/private/json.php')
-rw-r--r-- | lib/private/json.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/private/json.php b/lib/private/json.php index 34f81c3b8cf..4634d7adfea 100644 --- a/lib/private/json.php +++ b/lib/private/json.php @@ -43,8 +43,7 @@ class OC_JSON{ } /** - * @brief Check an ajax get/post call if the request token is valid. - * @return json Error msg if not valid. + * Check an ajax get/post call if the request token is valid, send json error msg if not. */ public static function callCheck() { if( !OC_Util::isCallRegistered()) { @@ -55,7 +54,7 @@ class OC_JSON{ } /** - * Check if the user is a admin, send json error msg if not + * Check if the user is a admin, send json error msg if not. */ public static function checkAdminUser() { if( !OC_User::isAdminUser(OC_User::getUser())) { |