diff --git a/src/Http.php b/src/Http.php index ee05cc6..6a09225 100644 --- a/src/Http.php +++ b/src/Http.php @@ -434,7 +434,7 @@ public static function decode(string $recv_buffer, TcpConnection $connection): v } // REQUEST - $_REQUEST = \array_merge($_GET, $_POST, $_REQUEST); + $_REQUEST = [...$_GET, ...$_POST, ...$_REQUEST]; if ($_SERVER['REQUEST_METHOD'] === 'GET') { static::$cache[$recv_buffer]['decode'] = [