Skip to content

Commit b746a24

Browse files
atymicStyleCIBot
authored andcommitted
Apply fixes from StyleCI
1 parent 36db746 commit b746a24

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

src/TouchSmsChannel.php

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,23 +20,21 @@ public function send($notifiable, Notification $notification): void
2020
{
2121
$to = $notifiable->routeNotificationFor('touchsms');
2222

23-
24-
if (!$to) {
23+
if (! $to) {
2524
$to = $notifiable->routeNotificationFor(TouchSmsChannel::class);
2625
}
2726

28-
if (!$to) {
27+
if (! $to) {
2928
return;
3029
}
3130

32-
3331
$message = $notification->toTouchsms($notifiable);
3432

3533
if (is_string($message)) {
3634
$message = new TouchSmsMessage($message);
3735
}
3836

39-
if (!$message instanceof TouchSmsMessage) {
37+
if (! $message instanceof TouchSmsMessage) {
4038
return;
4139
}
4240

0 commit comments

Comments
 (0)