diff --git a/src/Appwrite/Utopia/Request.php b/src/Appwrite/Utopia/Request.php index 0786f65f8b..c5a916bed6 100644 --- a/src/Appwrite/Utopia/Request.php +++ b/src/Appwrite/Utopia/Request.php @@ -27,6 +27,11 @@ class Request extends UtopiaRequest parent::__construct($request); } + public function clone(): Request + { + return new self($this->swoole); + } + public function getSwoole(): SwooleRequest { return $this->swoole;