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); }