HTTP 2.0 and 3.0 fix

This commit is contained in:
Arsen Mirzaev Tatyano-Muradovich 2024-12-16 20:06:02 +07:00
parent f936b70916
commit 476037b062

View File

@ -16,8 +16,8 @@ namespace mirzaev\minimal\http\enumerations;
*/ */
enum protocol: string enum protocol: string
{ {
case http_3 = 'HTTP/3'; case http_3 = 'HTTP/3.0';
case http_2 = 'HTTP/2'; case http_2 = 'HTTP/2.0';
case http_1_1 = 'HTTP/1.1'; case http_1_1 = 'HTTP/1.1';
case http_1 = 'hTTP/1.0'; case http_1 = 'hTTP/1.0';
case http_0_9 = 'HTTP/0.9'; case http_0_9 = 'HTTP/0.9';