Skip to content

Commit e88b8a2

Browse files
committed
Suggested style changes
1 parent daa0747 commit e88b8a2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/Contracts/CheckNotifiableSubscriptionStatus.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44

55
interface CheckNotifiableSubscriptionStatus
66
{
7-
public function checkMailSubscriptionStatus() : bool;
7+
public function checkMailSubscriptionStatus(): bool;
88
}

src/Contracts/CheckSubscriptionStatusBeforeSendingNotifications.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66

77
interface CheckSubscriptionStatusBeforeSendingNotifications
88
{
9-
public function mailSubscriptionStatus(Notification $notification) : bool;
9+
public function mailSubscriptionStatus(Notification $notification): bool;
1010
}

src/MailSubscriber.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public function unsubscribeLink(?string $mailingList = ''): string
2525
* @param Notification $notification
2626
* @return bool
2727
*/
28-
public function mailSubscriptionStatus(Notification $notification) : bool
28+
public function mailSubscriptionStatus(Notification $notification): bool
2929
{
3030
return Subscriber::checkSubscriptionStatus(
3131
$this,

0 commit comments

Comments
 (0)