diff options
author | Gerardo Zamudio <gerardozamudio@users.noreply.github.com> | 2016-02-24 23:48:50 -0600 |
---|---|---|
committer | Gerardo Zamudio <gerardozamudio@users.noreply.github.com> | 2016-02-24 23:48:50 -0600 |
commit | e4de6b3898b64b26d29aff31f21df5fda8055686 (patch) | |
tree | 575f8a65440f291d70a070d168eafca8c82a6459 /doc/plugin-notifications.markdown | |
parent | d9ffbea174ea6524d0a22f8375ca8b3aa04a3c96 (diff) | |
parent | a6540bc604c837d92c9368540c145606723e97f7 (diff) |
Merge pull request #1 from fguillot/master
Update from upstream
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 |