Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
sawirricardo authored and github-actions[bot] committed Nov 2, 2022
1 parent 66e009a commit 0c0abc3
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
3 changes: 2 additions & 1 deletion src/Channels/AmantelepowerChannel.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
use Illuminate\Notifications\Notification;
use Sawirricardo\LaravelAmantelepower\Facades\LaravelAmantelepower;

class AmantelepowerChannel {
class AmantelepowerChannel
{
/**
* Send the given notification.
*
Expand Down
1 change: 1 addition & 0 deletions src/Facades/LaravelAmantelepower.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
/**
* @method static \Sawirricardo\LaravelAmantelepower\LaravelAmantelepower create ()
* @method static \Illuminate\Http\Client\Response sendSms (string $phone, string $message)
*
* @see \Sawirricardo\LaravelAmantelepower\LaravelAmantelepower
*/
class LaravelAmantelepower extends Facade
Expand Down
10 changes: 5 additions & 5 deletions src/LaravelAmantelepower.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ public function sendSms($phone, $message)
{
return $this->buildRequest()
->post('SendSMS', [
"Message" => $message,
"MobileNumbers" => $phone,
"SenderId" => $this->config['amantelepower.sender_id'],
"ApiKey" => $this->config['amantelepower.api_key'],
"ClientId" => $this->config['amantelepower.client_id'],
'Message' => $message,
'MobileNumbers' => $phone,
'SenderId' => $this->config['amantelepower.sender_id'],
'ApiKey' => $this->config['amantelepower.api_key'],
'ClientId' => $this->config['amantelepower.client_id'],
]);
}

Expand Down
1 change: 0 additions & 1 deletion src/LaravelAmantelepowerServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

use Spatie\LaravelPackageTools\Package;
use Spatie\LaravelPackageTools\PackageServiceProvider;
use Sawirricardo\LaravelAmantelepower\Commands\LaravelAmantelepowerCommand;

class LaravelAmantelepowerServiceProvider extends PackageServiceProvider
{
Expand Down

0 comments on commit 0c0abc3

Please sign in to comment.