summaryrefslogtreecommitdiff
path: root/app/Core
diff options
context:
space:
mode:
Diffstat (limited to 'app/Core')
-rw-r--r--app/Core/Base.php8
-rw-r--r--app/Core/NotificationInterface.php22
2 files changed, 4 insertions, 26 deletions
diff --git a/app/Core/Base.php b/app/Core/Base.php
index 76723e8f..c542cd47 100644
--- a/app/Core/Base.php
+++ b/app/Core/Base.php
@@ -49,11 +49,11 @@ use Pimple\Container;
* @property \Kanboard\Model\File $file
* @property \Kanboard\Model\LastLogin $lastLogin
* @property \Kanboard\Model\Link $link
- * @property \Kanboard\Model\Notification $notification
- * @property \Kanboard\Model\NotificationType $notificationType
- * @property \Kanboard\Model\NotificationFilter $notificationFilter
+ * @property \Kanboard\Model\UserNotification $userNotification
+ * @property \Kanboard\Model\UserNotificationType $userNotificationType
+ * @property \Kanboard\Model\UserNotificationFilter $userNotificationFilter
+ * @property \Kanboard\Model\UserUnreadNotification $userUnreadNotification
* @property \Kanboard\Model\OverdueNotification $overdueNotification
- * @property \Kanboard\Model\WebNotification $webNotification
* @property \Kanboard\Model\Project $project
* @property \Kanboard\Model\ProjectActivity $projectActivity
* @property \Kanboard\Model\ProjectAnalytic $projectAnalytic
diff --git a/app/Core/NotificationInterface.php b/app/Core/NotificationInterface.php
deleted file mode 100644
index b6cd1781..00000000
--- a/app/Core/NotificationInterface.php
+++ /dev/null
@@ -1,22 +0,0 @@
-<?php
-
-namespace Kanboard\Core;
-
-/**
- * Notification Interface
- *
- * @package core
- * @author Frederic Guillot
- */
-interface NotificationInterface
-{
- /**
- * Send notification to someone
- *
- * @access public
- * @param array $user
- * @param string $event_name
- * @param array $event_data
- */
- public function send(array $user, $event_name, array $event_data);
-}