Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/Response.php
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,8 @@ class Response

public const STATUS_CODE_TOO_MANY_REQUESTS = 429;

public const STATUS_CODE_UNAVAILABLE_FOR_LEGAL_REASONS = 451;

public const STATUS_CODE_INTERNAL_SERVER_ERROR = 500;

public const STATUS_CODE_NOT_IMPLEMENTED = 501;
Expand Down Expand Up @@ -168,6 +170,7 @@ class Response
self::STATUS_CODE_EXPECTATION_FAILED => 'Expectation Failed',
self::STATUS_CODE_TOO_EARLY => 'Too Early',
self::STATUS_CODE_TOO_MANY_REQUESTS => 'Too Many Requests',
self::STATUS_CODE_UNAVAILABLE_FOR_LEGAL_REASONS => 'Unavailable For Legal Reasons',
self::STATUS_CODE_INTERNAL_SERVER_ERROR => 'Internal Server Error',
self::STATUS_CODE_NOT_IMPLEMENTED => 'Not Implemented',
self::STATUS_CODE_BAD_GATEWAY => 'Bad Gateway',
Expand Down