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 ( a3ab80...7a98f7 )
by Brendan
06:22
created
symphony/lib/toolkit/fields/field.taglist.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -25,6 +25,10 @@  discard block
 block discarded – undo
25 25
             Definition:
26 26
         -------------------------------------------------------------------------*/
27 27
 
28
+        /**
29
+         * @param string $field
30
+         * @param string $value
31
+         */
28 32
         public function set($field, $value)
29 33
         {
30 34
             if ($field === 'pre_populate_source' && !is_array($value)) {
@@ -584,6 +588,9 @@  discard block
 block discarded – undo
584 588
             );
585 589
         }
586 590
 
591
+        /**
592
+         * @param integer $entry_id
593
+         */
587 594
         public function processRawFieldData($data, &$status, &$message = null, $simulate = false, $entry_id = null)
588 595
         {
589 596
             $status = self::__OK__;
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
@@ -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.upload.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -374,6 +374,9 @@  discard block
 block discarded – undo
374 374
             return $this->validateFilename($data['name'], $message);
375 375
         }
376 376
 
377
+        /**
378
+         * @param string $file
379
+         */
377 380
         public function validateFilename($file, &$message)
378 381
         {
379 382
             if ($this->get('validator') !== null) {
@@ -506,6 +509,9 @@  discard block
 block discarded – undo
506 509
             Import:
507 510
         -------------------------------------------------------------------------*/
508 511
 
512
+        /**
513
+         * @param integer $entry_id
514
+         */
509 515
         public function processRawFieldData($data, &$status, &$message = null, $simulate = false, $entry_id = null)
510 516
         {
511 517
             $status = self::__OK__;
@@ -666,6 +672,9 @@  discard block
 block discarded – undo
666 672
             );
667 673
         }
668 674
 
675
+        /**
676
+         * @param string $file
677
+         */
669 678
         public static function getMetaInfo($file, $type)
670 679
         {
671 680
             $meta = array();
Please login to merge, or discard this patch.