summaryrefslogtreecommitdiffstats
path: root/lib/public/API.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/public/API.php')
-rw-r--r--lib/public/API.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/public/API.php b/lib/public/API.php
index ce09a4349a9..e1ccd3d02a1 100644
--- a/lib/public/API.php
+++ b/lib/public/API.php
@@ -44,8 +44,8 @@ class API {
* API Response Codes
* @since 8.1.0
*/
- const RESPOND_UNAUTHORISED = 997;
- const RESPOND_SERVER_ERROR = 996;
- const RESPOND_NOT_FOUND = 998;
- const RESPOND_UNKNOWN_ERROR = 999;
+ public const RESPOND_UNAUTHORISED = 997;
+ public const RESPOND_SERVER_ERROR = 996;
+ public const RESPOND_NOT_FOUND = 998;
+ public const RESPOND_UNKNOWN_ERROR = 999;
}