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/toolkit/events/class.event.section.php 1 patch
Doc Comments   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
      * @param XMLElement $result
66 66
      * @param array $fields
67 67
      * @param array $errors
68
-     * @param object $post_values
68
+     * @param XMLElement $post_values
69 69
      * @throws Exception
70 70
      * @return XMLElement
71 71
      */
@@ -192,7 +192,6 @@  discard block
 block discarded – undo
192 192
      * Helper method to determine if a field is missing, or if the data
193 193
      * provided was invalid. Used in conjunction with `array_reduce`.
194 194
      *
195
-     * @param array $a,
196 195
      * @param array $b
197 196
      * @return string
198 197
      *  'missing' or 'invalid'
@@ -303,7 +302,7 @@  discard block
 block discarded – undo
303 302
      *  If this Event is editing an existing entry, that Entry ID will
304 303
      *  be passed to this function.
305 304
      * @throws Exception
306
-     * @return XMLElement
305
+     * @return boolean
307 306
      *  The result of the Event
308 307
      */
309 308
     public function __doit(array $fields = array(), XMLElement &$result, $position = null, $entry_id = null)
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.