3434 */
3535interface StatusCodeInterface
3636{
37- //Informational 1xx
37+ // Informational 1xx
3838 const STATUS_CONTINUE = 100 ;
3939 const STATUS_SWITCHING_PROTOCOLS = 101 ;
4040 const STATUS_PROCESSING = 102 ;
41- //Successful 2xx
41+ // Successful 2xx
4242 const STATUS_OK = 200 ;
4343 const STATUS_CREATED = 201 ;
4444 const STATUS_ACCEPTED = 202 ;
@@ -49,7 +49,7 @@ interface StatusCodeInterface
4949 const STATUS_MULTI_STATUS = 207 ;
5050 const STATUS_ALREADY_REPORTED = 208 ;
5151 const STATUS_IM_USED = 226 ;
52- //Redirection 3xx
52+ // Redirection 3xx
5353 const STATUS_MULTIPLE_CHOICES = 300 ;
5454 const STATUS_MOVED_PERMANENTLY = 301 ;
5555 const STATUS_FOUND = 302 ;
@@ -59,7 +59,7 @@ interface StatusCodeInterface
5959 const STATUS_RESERVED = 306 ;
6060 const STATUS_TEMPORARY_REDIRECT = 307 ;
6161 const STATUS_PERMANENT_REDIRECT = 308 ;
62- //Client Error 4xx
62+ // Client Errors 4xx
6363 const STATUS_BAD_REQUEST = 400 ;
6464 const STATUS_UNAUTHORIZED = 401 ;
6565 const STATUS_PAYMENT_REQUIRED = 402 ;
@@ -87,7 +87,7 @@ interface StatusCodeInterface
8787 const STATUS_TOO_MANY_REQUESTS = 429 ;
8888 const STATUS_REQUEST_HEADER_FIELDS_TOO_LARGE = 431 ;
8989 const STATUS_UNAVAILABLE_FOR_LEGAL_REASONS = 451 ;
90- //Server Error 5xx
90+ // Server Errors 5xx
9191 const STATUS_INTERNAL_SERVER_ERROR = 500 ;
9292 const STATUS_NOT_IMPLEMENTED = 501 ;
9393 const STATUS_BAD_GATEWAY = 502 ;
0 commit comments