diff --git a/src/Drivers/Adn.php b/src/Drivers/Adn.php index 15abb16..4548ec3 100644 --- a/src/Drivers/Adn.php +++ b/src/Drivers/Adn.php @@ -62,7 +62,7 @@ public function send(SmsMessage $message): Response return Http::withoutVerifying() ->timeout(30) - ->withHeaders(['Content-Type'=>'application/json','Accept'=>'application/json']) + ->withHeaders(['Content-Type' => 'application/json','Accept' => 'application/json']) ->post($this->config['url'], $this->payload); } diff --git a/src/Drivers/SmsApi.php b/src/Drivers/SmsApi.php index e1ef25c..83f5628 100644 --- a/src/Drivers/SmsApi.php +++ b/src/Drivers/SmsApi.php @@ -22,7 +22,7 @@ protected function mergeConfig(): array { return [ 'url' => 'https://api.smsapi.com/sms.do', - 'format' =>'json' + 'format' => 'json' ]; }