Skip to content

Commit e4509db

Browse files
committed
Fixed array syntax for Notify event URL
1 parent 240efc2 commit e4509db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Voice/NCCO/Action/Notify.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public function toNCCOArray(): array
5757
return [
5858
'action' => 'notify',
5959
'payload' => $this->getPayload(),
60-
'eventUrl' => $this->getEventWebhook()->getUrl(),
60+
'eventUrl' => [$this->getEventWebhook()->getUrl()],
6161
'eventMethod' => $this->getEventWebhook()->getMethod(),
6262
];
6363
}

0 commit comments

Comments
 (0)