Completed
Push — master ( 2f5ecd...f26b52 )
by dan
01:56
created
DatabaseNotificationManager.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -48,6 +48,9 @@  discard block
 block discarded – undo
48 48
         return false;
49 49
     }
50 50
 
51
+    /**
52
+     * @param \DateTime $now
53
+     */
51 54
     public function setReadAtDate(DatabaseNotificationInterface $notification, $now = null, $flush = true)
52 55
     {
53 56
         if (empty($now)) {
@@ -63,6 +66,9 @@  discard block
 block discarded – undo
63 66
         }
64 67
     }
65 68
 
69
+    /**
70
+     * @param \DateTime $now
71
+     */
66 72
     public function setUsersNotificationsAsRead(NotifiableInterface $notifiable, $now = null)
67 73
     {
68 74
         $entity = $this->notificationEntityName();
@@ -98,6 +104,9 @@  discard block
 block discarded – undo
98 104
         return 0;
99 105
     }
100 106
 
107
+    /**
108
+     * @return string
109
+     */
101 110
     protected function notificationEntityName()
102 111
     {
103 112
         $config = $this->databaseConfiguration;
Please login to merge, or discard this patch.