From b2066a0a69854c3466b093599ec1d78781582aa9 Mon Sep 17 00:00:00 2001 From: Assem Alwaseai <119125167+A909M@users.noreply.github.com> Date: Sun, 12 Jul 2026 23:32:26 +0300 Subject: [PATCH] feat: add HTTP QUERY method support (RFC 10008) --- src/Enums/Method.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Enums/Method.php b/src/Enums/Method.php index 882df3ca..87231a38 100644 --- a/src/Enums/Method.php +++ b/src/Enums/Method.php @@ -15,4 +15,5 @@ enum Method: string case OPTIONS = 'OPTIONS'; case CONNECT = 'CONNECT'; case TRACE = 'TRACE'; + case QUERY = 'QUERY'; }