aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Notifications
diff options
context:
space:
mode:
Diffstat (limited to 'src/Wallabag/CoreBundle/Notifications')
-rw-r--r--src/Wallabag/CoreBundle/Notifications/Action.php1
-rw-r--r--src/Wallabag/CoreBundle/Notifications/ActionInterface.php1
-rw-r--r--src/Wallabag/CoreBundle/Notifications/NotificationInterface.php4
3 files changed, 3 insertions, 3 deletions
diff --git a/src/Wallabag/CoreBundle/Notifications/Action.php b/src/Wallabag/CoreBundle/Notifications/Action.php
index d032adf9..d92ffe54 100644
--- a/src/Wallabag/CoreBundle/Notifications/Action.php
+++ b/src/Wallabag/CoreBundle/Notifications/Action.php
@@ -56,7 +56,6 @@ class Action implements ActionInterface
56 * @param int $type 56 * @param int $type
57 * 57 *
58 * @return ActionInterface 58 * @return ActionInterface
59 *
60 * @throws \InvalidArgumentException 59 * @throws \InvalidArgumentException
61 */ 60 */
62 public function setType($type) 61 public function setType($type)
diff --git a/src/Wallabag/CoreBundle/Notifications/ActionInterface.php b/src/Wallabag/CoreBundle/Notifications/ActionInterface.php
index e166e45b..d6bb0fcc 100644
--- a/src/Wallabag/CoreBundle/Notifications/ActionInterface.php
+++ b/src/Wallabag/CoreBundle/Notifications/ActionInterface.php
@@ -4,6 +4,7 @@ namespace Wallabag\CoreBundle\Notifications;
4 4
5interface ActionInterface 5interface ActionInterface
6{ 6{
7
7 /** 8 /**
8 * @return string 9 * @return string
9 */ 10 */
diff --git a/src/Wallabag/CoreBundle/Notifications/NotificationInterface.php b/src/Wallabag/CoreBundle/Notifications/NotificationInterface.php
index 4a3c2759..fa226487 100644
--- a/src/Wallabag/CoreBundle/Notifications/NotificationInterface.php
+++ b/src/Wallabag/CoreBundle/Notifications/NotificationInterface.php
@@ -37,12 +37,12 @@ interface NotificationInterface extends LoggerAwareInterface
37 /** 37 /**
38 * If the notification has been viewed / dismissed or not. 38 * If the notification has been viewed / dismissed or not.
39 * 39 *
40 * @return bool 40 * @return boolean
41 */ 41 */
42 public function isRead(); 42 public function isRead();
43 43
44 /** 44 /**
45 * @param bool $read 45 * @param boolean $read
46 * 46 *
47 * @return NotificationInterface 47 * @return NotificationInterface
48 */ 48 */