10000 send the recipient phone number as an array · symfony/symfony@86480fe · GitHub
[go: up one dir, main page]

Skip to content

Commit 86480fe

Browse files
committed
send the recipient phone number as an array
1 parent 7b53770 commit 86480fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/Notifier/Bridge/Clickatell/ClickatellTransport.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ protected function doSend(MessageInterface $message): SentMessage
6363

6464
$options = [];
6565
$options['from'] = $message->getFrom() ?: $this->from;
66-
$options['to'] = $message->getPhone();
66+
$options['to'] = [$message->getPhone()];
6767
$options['text'] = $message->getSubject();
6868

6969
$response = $this->client->request('POST', $endpoint, [

0 commit comments

Comments
 (0)
0