From 0c8c651857afdbcc31c03617d46c698903fefcea Mon Sep 17 00:00:00 2001 From: Ian Torres Date: Mon, 7 Jul 2025 22:17:15 -0400 Subject: [PATCH] Requests types added. --- src/Enum/RequestType.php | 60 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) diff --git a/src/Enum/RequestType.php b/src/Enum/RequestType.php index 1e0fe21..4f81058 100644 --- a/src/Enum/RequestType.php +++ b/src/Enum/RequestType.php @@ -56,4 +56,64 @@ enum RequestType: int * LIST */ case LIST = 0x07; + + /** + * INFO + */ + case INFO = 0x08; + + /** + * STAT + */ + case STAT = 0x09; + + /** + * STATS + */ + case STATS = 0x10; + + /** + * SUBSCRIBE + */ + case SUBSCRIBE = 0x11; + + /** + * UNSUBSCRIBE + */ + case UNSUBSCRIBE = 0x12; + + /** + * PUBLISH + */ + case PUBLISH = 0x13; + + /** + * CONNECTIONS + */ + case CONNECTIONS = 0x14; + + /** + * CONNECTION + */ + case CONNECTION = 0x15; + + /** + * CHANNELS + */ + case CHANNELS = 0x16; + + /** + * CHANNEL + */ + case CHANNEL = 0x17; + + /** + * WHOAMI + */ + case WHOAMI = 0x18; + + /** + * EVENT + */ + case EVENT = 0x19; }