Completed
Push — master ( 801245...aad899 )
by dan
01:56
created
Command/CreateNotificationCommand.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -155,6 +155,10 @@  discard block
 block discarded – undo
155 155
         $questionHelper->writeGeneratorSummary($output, []);
156 156
     }
157 157
 
158
+    /**
159
+     * @param \Sensio\Bundle\GeneratorBundle\Command\Helper\QuestionHelper $questionHelper
160
+     * @param InputInterface $input
161
+     */
158 162
     protected function createYesNoQuestion($questionHelper, $input, $channel)
159 163
     {
160 164
         $question = new Question(
@@ -164,12 +168,20 @@  discard block
 block discarded – undo
164 168
             ), 'yes'
165 169
         );
166 170
         $question->setNormalizer(
171
+
172
+            /**
173
+             * @param \Sensio\Bundle\GeneratorBundle\Command\Helper\QuestionHelper $value
174
+             */
167 175
             function ($value) {
168 176
                 return $value[0] == 'y' ? 'y' : 'n';
169 177
             }
170 178
         );
171 179
 
172 180
         $question->setValidator(
181
+
182
+            /**
183
+             * @param \Sensio\Bundle\GeneratorBundle\Command\Helper\QuestionHelper $answer
184
+             */
173 185
             function ($answer) {
174 186
                 // Should only contain letters.
175 187
                 $allowed = [
Please login to merge, or discard this patch.
DatabaseNotificationManager.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
 
85 85
     /**
86 86
      * @param DatabaseNotificationInterface $notification
87
-     * @param null                          $now
87
+     * @param null|\DateTime                          $now
88 88
      * @param bool                          $flush
89 89
      */
90 90
     public function setReadAtDate(DatabaseNotificationInterface $notification, $now = null, $flush = true)
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
 
105 105
     /**
106 106
      * @param NotifiableInterface $notifiable
107
-     * @param null                $now
107
+     * @param \DateTime                $now
108 108
      */
109 109
     public function setUsersNotificationsAsRead(NotifiableInterface $notifiable, $now = null)
110 110
     {
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
     }
160 160
 
161 161
     /**
162
-     * @return bool|mixed
162
+     * @return string
163 163
      */
164 164
     protected function notificationEntityName()
165 165
     {
Please login to merge, or discard this patch.
NotificationManager.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
 
113 113
     /**
114 114
      * @param DatabaseNotificationInterface $notification
115
-     * @return bool
115
+     * @return boolean|null
116 116
      */
117 117
     public function markAsRead(DatabaseNotificationInterface $notification)
118 118
     {
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
 
129 129
     /**
130 130
      * @param NotifiableInterface $user
131
-     * @return bool
131
+     * @return boolean|null
132 132
      */
133 133
     public function markAllAsRead(NotifiableInterface $user)
134 134
     {
Please login to merge, or discard this patch.
Adapter/BaseMessageAdapter.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
      * @param $data
40 40
      * @param $user
41 41
      * @param $template
42
-     * @return mixed
42
+     * @return string
43 43
      */
44 44
     protected function renderTwigTemplate($data, $user, $template)
45 45
     {
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
     }
139 139
 
140 140
     /**
141
-     * @param mixed $channeName
141
+     * @param string $channelName
142 142
      */
143 143
     public function setChannelName($channelName)
144 144
     {
Please login to merge, or discard this patch.