Skip to content

Commit

Permalink
fix bug in dial
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenafamo committed Sep 24, 2018
1 parent 65f3331 commit 40cee91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Voice.php
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ protected function buildDial($options)
if (!isset($options['phoneNumbers'])) {
return $this->error('Please specifiy at least one number to dial');
}
$phoneNumbers = implode(", ", $options["phoneNumbers"]);
$phoneNumbers = implode(",", $options["phoneNumbers"]);

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

0 comments on commit 40cee91

Please sign in to comment.