summaryrefslogtreecommitdiffstats
path: root/lib/public/AppFramework
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2020-04-10 16:54:27 +0200
committerChristoph Wurst <christoph@winzerhof-wurst.at>2020-04-10 16:54:27 +0200
commit28f8eb5dba60a75f7e22debbdc26f1d3164deb18 (patch)
tree5bb8a104ec6b5af821b81cf392c69167deca4c0a /lib/public/AppFramework
parent1584c9ae9c23d2a7915750ef9203cba0bcebf766 (diff)
downloadnextcloud-server-28f8eb5dba60a75f7e22debbdc26f1d3164deb18.tar.gz
nextcloud-server-28f8eb5dba60a75f7e22debbdc26f1d3164deb18.zip
Add visibility to all constants
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'lib/public/AppFramework')
-rw-r--r--lib/public/AppFramework/Http.php118
-rw-r--r--lib/public/AppFramework/Http/TemplateResponse.php4
2 files changed, 61 insertions, 61 deletions
diff --git a/lib/public/AppFramework/Http.php b/lib/public/AppFramework/Http.php
index e0b910325a0..1106c58af85 100644
--- a/lib/public/AppFramework/Http.php
+++ b/lib/public/AppFramework/Http.php
@@ -34,63 +34,63 @@ namespace OCP\AppFramework;
* @since 6.0.0
*/
class Http {
- const STATUS_CONTINUE = 100;
- const STATUS_SWITCHING_PROTOCOLS = 101;
- const STATUS_PROCESSING = 102;
- const STATUS_OK = 200;
- const STATUS_CREATED = 201;
- const STATUS_ACCEPTED = 202;
- const STATUS_NON_AUTHORATIVE_INFORMATION = 203;
- const STATUS_NO_CONTENT = 204;
- const STATUS_RESET_CONTENT = 205;
- const STATUS_PARTIAL_CONTENT = 206;
- const STATUS_MULTI_STATUS = 207;
- const STATUS_ALREADY_REPORTED = 208;
- const STATUS_IM_USED = 226;
- const STATUS_MULTIPLE_CHOICES = 300;
- const STATUS_MOVED_PERMANENTLY = 301;
- const STATUS_FOUND = 302;
- const STATUS_SEE_OTHER = 303;
- const STATUS_NOT_MODIFIED = 304;
- const STATUS_USE_PROXY = 305;
- const STATUS_RESERVED = 306;
- const STATUS_TEMPORARY_REDIRECT = 307;
- const STATUS_BAD_REQUEST = 400;
- const STATUS_UNAUTHORIZED = 401;
- const STATUS_PAYMENT_REQUIRED = 402;
- const STATUS_FORBIDDEN = 403;
- const STATUS_NOT_FOUND = 404;
- const STATUS_METHOD_NOT_ALLOWED = 405;
- const STATUS_NOT_ACCEPTABLE = 406;
- const STATUS_PROXY_AUTHENTICATION_REQUIRED = 407;
- const STATUS_REQUEST_TIMEOUT = 408;
- const STATUS_CONFLICT = 409;
- const STATUS_GONE = 410;
- const STATUS_LENGTH_REQUIRED = 411;
- const STATUS_PRECONDITION_FAILED = 412;
- const STATUS_REQUEST_ENTITY_TOO_LARGE = 413;
- const STATUS_REQUEST_URI_TOO_LONG = 414;
- const STATUS_UNSUPPORTED_MEDIA_TYPE = 415;
- const STATUS_REQUEST_RANGE_NOT_SATISFIABLE = 416;
- const STATUS_EXPECTATION_FAILED = 417;
- const STATUS_IM_A_TEAPOT = 418;
- const STATUS_UNPROCESSABLE_ENTITY = 422;
- const STATUS_LOCKED = 423;
- const STATUS_FAILED_DEPENDENCY = 424;
- const STATUS_UPGRADE_REQUIRED = 426;
- const STATUS_PRECONDITION_REQUIRED = 428;
- const STATUS_TOO_MANY_REQUESTS = 429;
- const STATUS_REQUEST_HEADER_FIELDS_TOO_LARGE = 431;
- const STATUS_INTERNAL_SERVER_ERROR = 500;
- const STATUS_NOT_IMPLEMENTED = 501;
- const STATUS_BAD_GATEWAY = 502;
- const STATUS_SERVICE_UNAVAILABLE = 503;
- const STATUS_GATEWAY_TIMEOUT = 504;
- const STATUS_HTTP_VERSION_NOT_SUPPORTED = 505;
- const STATUS_VARIANT_ALSO_NEGOTIATES = 506;
- const STATUS_INSUFFICIENT_STORAGE = 507;
- const STATUS_LOOP_DETECTED = 508;
- const STATUS_BANDWIDTH_LIMIT_EXCEEDED = 509;
- const STATUS_NOT_EXTENDED = 510;
- const STATUS_NETWORK_AUTHENTICATION_REQUIRED = 511;
+ public const STATUS_CONTINUE = 100;
+ public const STATUS_SWITCHING_PROTOCOLS = 101;
+ public const STATUS_PROCESSING = 102;
+ public const STATUS_OK = 200;
+ public const STATUS_CREATED = 201;
+ public const STATUS_ACCEPTED = 202;
+ public const STATUS_NON_AUTHORATIVE_INFORMATION = 203;
+ public const STATUS_NO_CONTENT = 204;
+ public const STATUS_RESET_CONTENT = 205;
+ public const STATUS_PARTIAL_CONTENT = 206;
+ public const STATUS_MULTI_STATUS = 207;
+ public const STATUS_ALREADY_REPORTED = 208;
+ public const STATUS_IM_USED = 226;
+ public const STATUS_MULTIPLE_CHOICES = 300;
+ public const STATUS_MOVED_PERMANENTLY = 301;
+ public const STATUS_FOUND = 302;
+ public const STATUS_SEE_OTHER = 303;
+ public const STATUS_NOT_MODIFIED = 304;
+ public const STATUS_USE_PROXY = 305;
+ public const STATUS_RESERVED = 306;
+ public const STATUS_TEMPORARY_REDIRECT = 307;
+ public const STATUS_BAD_REQUEST = 400;
+ public const STATUS_UNAUTHORIZED = 401;
+ public const STATUS_PAYMENT_REQUIRED = 402;
+ public const STATUS_FORBIDDEN = 403;
+ public const STATUS_NOT_FOUND = 404;
+ public const STATUS_METHOD_NOT_ALLOWED = 405;
+ public const STATUS_NOT_ACCEPTABLE = 406;
+ public const STATUS_PROXY_AUTHENTICATION_REQUIRED = 407;
+ public const STATUS_REQUEST_TIMEOUT = 408;
+ public const STATUS_CONFLICT = 409;
+ public const STATUS_GONE = 410;
+ public const STATUS_LENGTH_REQUIRED = 411;
+ public const STATUS_PRECONDITION_FAILED = 412;
+ public const STATUS_REQUEST_ENTITY_TOO_LARGE = 413;
+ public const STATUS_REQUEST_URI_TOO_LONG = 414;
+ public const STATUS_UNSUPPORTED_MEDIA_TYPE = 415;
+ public const STATUS_REQUEST_RANGE_NOT_SATISFIABLE = 416;
+ public const STATUS_EXPECTATION_FAILED = 417;
+ public const STATUS_IM_A_TEAPOT = 418;
+ public const STATUS_UNPROCESSABLE_ENTITY = 422;
+ public const STATUS_LOCKED = 423;
+ public const STATUS_FAILED_DEPENDENCY = 424;
+ public const STATUS_UPGRADE_REQUIRED = 426;
+ public const STATUS_PRECONDITION_REQUIRED = 428;
+ public const STATUS_TOO_MANY_REQUESTS = 429;
+ public const STATUS_REQUEST_HEADER_FIELDS_TOO_LARGE = 431;
+ public const STATUS_INTERNAL_SERVER_ERROR = 500;
+ public const STATUS_NOT_IMPLEMENTED = 501;
+ public const STATUS_BAD_GATEWAY = 502;
+ public const STATUS_SERVICE_UNAVAILABLE = 503;
+ public const STATUS_GATEWAY_TIMEOUT = 504;
+ public const STATUS_HTTP_VERSION_NOT_SUPPORTED = 505;
+ public const STATUS_VARIANT_ALSO_NEGOTIATES = 506;
+ public const STATUS_INSUFFICIENT_STORAGE = 507;
+ public const STATUS_LOOP_DETECTED = 508;
+ public const STATUS_BANDWIDTH_LIMIT_EXCEEDED = 509;
+ public const STATUS_NOT_EXTENDED = 510;
+ public const STATUS_NETWORK_AUTHENTICATION_REQUIRED = 511;
}
diff --git a/lib/public/AppFramework/Http/TemplateResponse.php b/lib/public/AppFramework/Http/TemplateResponse.php
index 283189a774a..d6c4006433c 100644
--- a/lib/public/AppFramework/Http/TemplateResponse.php
+++ b/lib/public/AppFramework/Http/TemplateResponse.php
@@ -38,8 +38,8 @@ namespace OCP\AppFramework\Http;
* @since 6.0.0
*/
class TemplateResponse extends Response {
- const EVENT_LOAD_ADDITIONAL_SCRIPTS = self::class . '::loadAdditionalScripts';
- const EVENT_LOAD_ADDITIONAL_SCRIPTS_LOGGEDIN = self::class . '::loadAdditionalScriptsLoggedIn';
+ public const EVENT_LOAD_ADDITIONAL_SCRIPTS = self::class . '::loadAdditionalScripts';
+ public const EVENT_LOAD_ADDITIONAL_SCRIPTS_LOGGEDIN = self::class . '::loadAdditionalScriptsLoggedIn';
/**
* name of the template