1 Commits
3.2.0 ... 3.3.0

Author SHA1 Message Date
476037b062 HTTP 2.0 and 3.0 fix 2024-12-16 20:06:02 +07:00

View File

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