Skip to content

Commit 40cee91

Browse files
committed
fix bug in dial
1 parent 65f3331 commit 40cee91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Voice.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ protected function buildDial($options)
267267
if (!isset($options['phoneNumbers'])) {
268268
return $this->error('Please specifiy at least one number to dial');
269269
}
270-
$phoneNumbers = implode(", ", $options["phoneNumbers"]);
270+
$phoneNumbers = implode(",", $options["phoneNumbers"]);
271271

272272
// Check if ringback tone is set
273273
if (isset($options['ringbackTone'])) {

0 commit comments

Comments
 (0)