Skip to content

Commit

Permalink
Merge pull request #16 from arif98741/dev
Browse files Browse the repository at this point in the history
Fix minor issues for BulksmsBD
  • Loading branch information
arif98741 committed Dec 4, 2022
2 parents 7764d9d + 4535796 commit 24ed6ad
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Provider/BulkSmsBD.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@ public function sendRequest()
];

if (array_key_exists('senderid', $config)) {
$query = [
'senderid' => $config['senderid'],
];
$query ['senderid'] = $config['senderid'];
}



$requestObject = new Request('https://bulksmsbd.net/api/smsapi', $query, $queue);
$response = $requestObject->get();
if ($queue) {
Expand Down

0 comments on commit 24ed6ad

Please sign in to comment.