From 5a4d186619d525391d90daca23b68fa54ad3240b Mon Sep 17 00:00:00 2001 From: Jake Barnby Date: Wed, 3 Sep 2025 23:56:23 +1200 Subject: [PATCH] Add support for 422 --- src/Response.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Response.php b/src/Response.php index 0bc4d08..bd94667 100755 --- a/src/Response.php +++ b/src/Response.php @@ -113,6 +113,8 @@ class Response public const STATUS_CODE_EXPECTATION_FAILED = 417; + public const STATUS_CODE_UNPROCESSABLE_ENTITY = 422; + public const STATUS_CODE_TOO_EARLY = 425; public const STATUS_CODE_TOO_MANY_REQUESTS = 429;