Skip to content

Commit 23ccfec

Browse files
authored
Merge pull request #2 from laravel-notification-channels/analysis-8KgLkV
Applied fixes from StyleCI
2 parents 768598a + 8ff6dd2 commit 23ccfec

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/CallMessage.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,4 @@ public function from($from)
5454

5555
return $this;
5656
}
57-
}
57+
}

src/Exceptions/CouldNotSendNotification.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ public static function serviceRespondedWithAnException($exception)
2424
*/
2525
public static function invalidMessageObject($class)
2626
{
27-
return new static("Message object class `{$class}` is invalid. It should be either `" . SmsMessage::class . "` or `" . CallMessage::class . "`");
27+
return new static("Message object class `{$class}` is invalid. It should be either `".SmsMessage::class.'` or `'.CallMessage::class.'`');
2828
}
2929
}

src/SmsMessage.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,4 @@ public function from($from)
5454

5555
return $this;
5656
}
57-
}
57+
}

0 commit comments

Comments
 (0)