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
Pull Request — master (#2647)
by
unknown
04:18
created
symphony/lib/core/class.errorhandler.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -146,7 +146,7 @@
 block discarded – undo
146 146
      * @since Symphony 2.3
147 147
      * @param string $name
148 148
      *  Name of the template
149
-     * @return mixed
149
+     * @return string|false
150 150
      *  String, which is the path to the template if the template is found,
151 151
      *  false otherwise
152 152
      */
Please login to merge, or discard this patch.
symphony/lib/toolkit/class.emailgateway.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -502,7 +502,7 @@
 block discarded – undo
502 502
      *
503 503
      * @throws EmailGatewayException
504 504
      * @throws Exception
505
-     * @return boolean
505
+     * @return boolean|null
506 506
      */
507 507
     protected function prepareMessageBody()
508 508
     {
Please login to merge, or discard this patch.
symphony/lib/toolkit/fields/field.checkbox.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -201,6 +201,9 @@
 block discarded – undo
201 201
         return self::__OK__;
202 202
     }
203 203
 
204
+    /**
205
+     * @param integer $entry_id
206
+     */
204 207
     public function processRawFieldData($data, &$status, &$message = null, $simulate = false, $entry_id = null)
205 208
     {
206 209
         $status = self::__OK__;
Please login to merge, or discard this patch.
symphony/lib/toolkit/fields/field.select.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -357,6 +357,9 @@
 block discarded – undo
357 357
         return Field::checkPostFieldData($data, $message, $entry_id);
358 358
     }
359 359
 
360
+    /**
361
+     * @param integer $entry_id
362
+     */
360 363
     public function processRawFieldData($data, &$status, &$message = null, $simulate = false, $entry_id = null)
361 364
     {
362 365
         $status = self::__OK__;
Please login to merge, or discard this patch.
symphony/lib/toolkit/class.event.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@
 block discarded – undo
102 102
      *
103 103
      * @param string $language
104 104
      *  Language used in system
105
-     * @return mixed
105
+     * @return string|false
106 106
      *  String, which is the path to the template if the template is found,
107 107
      *  false otherwise
108 108
      */
Please login to merge, or discard this patch.
symphony/lib/toolkit/fields/field.textarea.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -201,6 +201,9 @@
 block discarded – undo
201 201
         return self::__OK__;
202 202
     }
203 203
 
204
+    /**
205
+     * @param integer $entry_id
206
+     */
204 207
     public function processRawFieldData($data, &$status, &$message = null, $simulate = false, $entry_id = null)
205 208
     {
206 209
         $status = self::__OK__;
Please login to merge, or discard this patch.