Skip to content

Commit

Permalink
Merge pull request #1117 from samsonasik/425-status
Browse files Browse the repository at this point in the history
add 425 status code
  • Loading branch information
lonnieezell authored Aug 1, 2018
2 parents b7360d0 + b4e1349 commit 6c3ad4c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion system/HTTP/Response.php
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,8 @@ class Response extends Message implements ResponseInterface
421 => 'Misdirected Request', // http://www.iana.org/go/rfc7540 Section 9.1.2
422 => 'Unprocessable Entity', // http://www.iana.org/go/rfc4918
423 => 'Locked', // http://www.iana.org/go/rfc4918
424 => 'Failed Dependency', // http://www.iana.org/go/rfc4918
424 => 'Failed Dependency', // http://www.iana.org/go/rfc4918
425 => 'Too Early', // https://datatracker.ietf.org/doc/draft-ietf-httpbis-replay/
426 => 'Upgrade Required',
428 => 'Precondition Required', // 1.1; http://www.ietf.org/rfc/rfc6585.txt
429 => 'Too Many Requests', // 1.1; http://www.ietf.org/rfc/rfc6585.txt
Expand Down

0 comments on commit 6c3ad4c

Please sign in to comment.