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 — integration ( 0ef3fb...a18d83 )
by Brendan
04:37
created
symphony/lib/toolkit/class.emailgateway.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -293,7 +293,7 @@
 block discarded – undo
293 293
          * function.
294 294
          *
295 295
          * @see toolkit.Field#commit()
296
-         * @return boolean
296
+         * @return boolean|null
297 297
          *  true if the commit was successful, false otherwise.
298 298
          */
299 299
         public function commit()
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
@@ -289,6 +289,9 @@
 block discarded – undo
289 289
             );
290 290
         }
291 291
 
292
+        /**
293
+         * @param integer $entry_id
294
+         */
292 295
         public function processRawFieldData($data, &$status, &$message = null, $simulate = false, $entry_id = null)
293 296
         {
294 297
             $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
@@ -289,6 +289,9 @@
 block discarded – undo
289 289
             );
290 290
         }
291 291
 
292
+        /**
293
+         * @param integer $entry_id
294
+         */
292 295
         public function processRawFieldData($data, &$status, &$message = null, $simulate = false, $entry_id = null)
293 296
         {
294 297
             $status = self::__OK__;
Please login to merge, or discard this patch.