From: Morris Jobke Date: Sat, 18 Apr 2015 21:19:35 +0000 (+0200) Subject: Add @since tag to public namespace constants X-Git-Tag: v8.1.0alpha2~27^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=f6807337a8f576b92a2586efc00173229fd681c9;p=nextcloud-server.git Add @since tag to public namespace constants --- diff --git a/lib/public/api.php b/lib/public/api.php index 92de1c5c6f5..6b920b6cf52 100644 --- a/lib/public/api.php +++ b/lib/public/api.php @@ -39,6 +39,7 @@ class API { /** * API authentication levels + * @since 8.1.0 */ const GUEST_AUTH = 0; const USER_AUTH = 1; @@ -47,6 +48,7 @@ class API { /** * API Response Codes + * @since 8.1.0 */ const RESPOND_UNAUTHORISED = 997; const RESPOND_SERVER_ERROR = 996;