Skip to content

Commit 7e738f9

Browse files
committed
Fixing styleCI
1 parent d756a16 commit 7e738f9

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/Twilio.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class Twilio
2626
public function __construct(TwilioService $twilioService, TwilioConfig $config)
2727
{
2828
$this->twilioService = $twilioService;
29-
$this->config = $config;
29+
$this->config = $config;
3030
}
3131

3232
/**
@@ -101,7 +101,7 @@ protected function makeCall(TwilioCallMessage $message, $to)
101101
*/
102102
protected function getFrom(TwilioMessage $message)
103103
{
104-
if ( ! $from = $message->getFrom() ?: $this->config->getFrom()) {
104+
if (! $from = $message->getFrom() ?: $this->config->getFrom()) {
105105
throw CouldNotSendNotification::missingFrom();
106106
}
107107

src/TwilioChannel.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,15 @@ public function __construct(Twilio $twilio, Dispatcher $events)
4343
public function send($notifiable, Notification $notification)
4444
{
4545
try {
46-
$to = $this->getTo($notifiable);
47-
$message = $notification->toTwilio($notifiable);
46+
$to = $this->getTo($notifiable);
47+
$message = $notification->toTwilio($notifiable);
4848
$useSender = $this->canReceiveAlphanumericSender($notifiable);
4949

5050
if (is_string($message)) {
5151
$message = new TwilioSmsMessage($message);
5252
}
5353

54-
if ( ! $message instanceof TwilioMessage) {
54+
if (! $message instanceof TwilioMessage) {
5555
throw CouldNotSendNotification::invalidMessageObject($message);
5656
}
5757

0 commit comments

Comments
 (0)