Skip to content

Commit fcb91e9

Browse files
committed
Code styling fix
1 parent 25c3035 commit fcb91e9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/InterfaxChannel.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,15 @@ public function send($notifiable, Notification $notification)
3636
'files' => $message->makeFiles(),
3737
]);
3838

39-
if ($message->shouldCheckStatus()):
39+
if ($message->shouldCheckStatus()) {
4040

4141
while ($fax->refresh()->status < 0) {
4242
sleep(config('services.interfax.interval', 15));
4343
}
4444

45-
if ($fax->refresh()->status > 0) {
46-
throw CouldNotSendNotification::serviceRespondedWithAnError($message, $fax->refresh()->attributes());
45+
if ($fax->refresh()->status > 0) {
46+
throw CouldNotSendNotification::serviceRespondedWithAnError($message, $fax->refresh()->attributes());
47+
}
4748
}
48-
endif;
4949
}
5050
}

0 commit comments

Comments
 (0)