GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( 9da2e0...451295 )
by Nicolaas
01:47
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
@@ -92,6 +92,9 @@
 block discarded – undo
92 92
         }
93 93
     }
94 94
 
95
+    /**
96
+     * @param boolean $isTestOnly
97
+     */
95 98
     protected function sendEmail($reminder, $recordOrEmail, $isTestOnly)
96 99
     {
97 100
         if (is_object($recordOrEmail)) {
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
@@ -6,8 +6,14 @@  discard block
 block discarded – undo
6 6
 
7 7
 
8 8
 
9
+    /**
10
+     * @return void
11
+     */
9 12
     public function setVerbose($b);
10 13
 
14
+    /**
15
+     * @return void
16
+     */
11 17
     public function setTestOnly($b);
12 18
 
13 19
     /**
@@ -26,7 +32,7 @@  discard block
 block discarded – undo
26 32
      * max current date - 7 - grace days
27 33
      *
28 34
      * @param  [type] $request [description]
29
-     * @return [type]          [description]
35
+     * @return void          [description]
30 36
      */
31 37
     public function run($request);
32 38
 
Please login to merge, or discard this patch.