Completed
Push — master ( 03d07b...dabc72 )
by Nicolaas
02:35
created
code/model/EmailReminder_NotificationSchedule.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -254,7 +254,7 @@  discard block
 block discarded – undo
254 254
 
255 255
     /**
256 256
      * list of database fields available
257
-     * @param  array $fieldTypeMatchArray - strpos filter
257
+     * @param  string[] $fieldTypeMatchArray - strpos filter
258 258
      * @return array
259 259
      */
260 260
     protected function getFieldsFromDataObject($fieldTypeMatchArray = array())
@@ -344,7 +344,7 @@  discard block
 block discarded – undo
344 344
     }
345 345
 
346 346
     /**
347
-     * @return boolean
347
+     * @return ValidationResult
348 348
      */
349 349
     public function validate()
350 350
     {
@@ -394,7 +394,7 @@  discard block
 block discarded – undo
394 394
 
395 395
     /**
396 396
      *
397
-     * @return null | ScheduledTask
397
+     * @return BuildTask|null | ScheduledTask
398 398
      */
399 399
     public function getMailOutObject()
400 400
     {
Please login to merge, or discard this patch.
code/tasks/EmailReminder_DailyMailOut.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -114,6 +114,9 @@
 block discarded – undo
114 114
     }
115 115
 
116 116
 
117
+    /**
118
+     * @param boolean $isTestOnly
119
+     */
117 120
     protected function sendEmail($reminder, $recordOrEmail, $isTestOnly)
118 121
     {
119 122
         $filter = array(
Please login to merge, or discard this patch.
code/interfaces/EmailReminder_MailOutInterface.php 1 patch
Doc Comments   +7 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,8 +3,14 @@  discard block
 block discarded – undo
3 3
 
4 4
 interface EmailReminder_MailOutInterface
5 5
 {
6
+    /**
7
+     * @return void
8
+     */
6 9
     public function setVerbose($b);
7 10
 
11
+    /**
12
+     * @return void
13
+     */
8 14
     public function setTestOnly($b);
9 15
 
10 16
     /**
@@ -23,7 +29,7 @@  discard block
 block discarded – undo
23 29
      * max current date - 7 - grace days
24 30
      *
25 31
      * @param  [type] $request [description]
26
-     * @return [type]          [description]
32
+     * @return void          [description]
27 33
      */
28 34
     public function run($request);
29 35
 
Please login to merge, or discard this patch.