From 69e9a1bd8cb6b6310bd2efd0289253978bf7754e Mon Sep 17 00:00:00 2001 From: shimon Date: Tue, 25 Feb 2025 17:42:36 +0200 Subject: [PATCH] debug cert --- src/Appwrite/Event/Event.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Appwrite/Event/Event.php b/src/Appwrite/Event/Event.php index 0edffdf4dc..47c876f72f 100644 --- a/src/Appwrite/Event/Event.php +++ b/src/Appwrite/Event/Event.php @@ -360,6 +360,10 @@ class Event // Merge the base payload with any trimmed values $payload = array_merge($this->preparePayload(), $this->trimPayload()); + var_dump([ + 'queue' => $this->getQueue(), + 'payload' => $payload, + ]); return $this->publisher->enqueue($queue, $payload); }