diff options
Diffstat (limited to 'doc/plugin-notifications.markdown')
-rw-r--r-- | doc/plugin-notifications.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/plugin-notifications.markdown b/doc/plugin-notifications.markdown index 83fdb5e3..15cf4b9b 100644 --- a/doc/plugin-notifications.markdown +++ b/doc/plugin-notifications.markdown @@ -17,14 +17,14 @@ $this->userNotificationType->setType('irc', t('IRC'), '\Kanboard\Plugin\IRC\Noti $this->projectNotificationType->setType('irc', t('IRC'), '\Kanboard\Plugin\IRC\Notification\IrcHandler'); ``` -Your handler can be registered for user or project notification. You don't necessary need to support both. +Your handler can be registered for user or project notification. You don't necessarily need to support both. When your handler is registered, the end-user can choose to receive the new notification type or not. Notification Handler -------------------- -Your notification handler must implements the interface `Kanboard\Notification\NotificationInterface`: +Your notification handler must implement the interface `Kanboard\Notification\NotificationInterface`: ```php interface NotificationInterface |