From 518c177c230081fbaa881f38e5fe06971271e038 Mon Sep 17 00:00:00 2001 From: Damodar Lohani Date: Thu, 11 May 2023 07:51:39 +0000 Subject: [PATCH] fix error --- src/Appwrite/Event/Func.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Appwrite/Event/Func.php b/src/Appwrite/Event/Func.php index d1ef112b3a..d121b47a4a 100644 --- a/src/Appwrite/Event/Func.php +++ b/src/Appwrite/Event/Func.php @@ -143,7 +143,7 @@ class Func extends Event public function trigger(): string|bool { if ($this->paused) { - return; + return false; } $client = new Client($this->queue, $this->connection);