diff --git a/app/Constants/HttpStatus.php b/app/Constants/HttpStatus.php index 81058c4..036c3e9 100644 --- a/app/Constants/HttpStatus.php +++ b/app/Constants/HttpStatus.php @@ -6,15 +6,20 @@ class HttpStatus { const OK = 200; const CREATED = 201; + const NO_CONTENT = 204; + const BAD_REQUEST = 400; const UNAUTHORIZED = 401; const FORBIDDEN = 403; const NOT_FOUND = 404; + const INTERNAL_SERVER_ERROR = 500; + const NOT_IMPLEMENTED = 501; const SERVICE_UNAVAILABLE = 503; const GATEWAY_TIMEOUT = 504; - const NOT_IMPLEMENTED = 501; const HTTP_VERSION_NOT_SUPPORTED = 505; const NETWORK_AUTHENTICATION_REQUIRED = 511; + const PREDETERMINADA = 404; + }