Skip to content

Commit 542d431

Browse files
committed
Merge branch '7.0' into 7.1
* 7.0: send the recipient phone number as an array [DependencyInjection] Fix ternary in AutowireCallable attribute fix test Fix CS [Messenger] Added postgres asset filter integration test [AssetMapper] fix npm version constraint conversion
2 parents b180e5a + 538e195 commit 542d431

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ClickatellTransport.php

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

6262
$options = [];
6363
$options['from'] = $message->getFrom() ?: $this->from;
64-
$options['to'] = $message->getPhone();
64+
$options['to'] = [$message->getPhone()];
6565
$options['text'] = $message->getSubject();
6666

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

0 commit comments

Comments
 (0)