From 9657926424e1c81a47fc70e274d727edfd343ddf Mon Sep 17 00:00:00 2001 From: William Earnhardt Date: Fri, 12 Mar 2021 10:58:22 -0500 Subject: [PATCH] Correct opt-in method name in Readme docs --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4f44525..43692e2 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ $user->notify(new InvoicePaid($invoice)); //This won't get sent. By default, all notifications will be sent if no subscribe/unsubscribe record is found. This means you don't need to explicitly **subscribe** a user to a notification, you only need to **unsubscribe** them. -In some cases, however, you'd like to create opt-in notifications. To do so, modify your notification class and add a function called `getOptInChannels`: +In some cases, however, you'd like to create opt-in notifications. To do so, modify your notification class and add a function called `getOptInSubscriptions`: ```php