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 — integration (#2604)
by Brendan
05:28
created
install/lib/Installer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@
 block discarded – undo
75 75
     /**
76 76
      * Overrides the default `initialiseLog()` method and writes logs to  `manifest/logs/install`
77 77
      *
78
-     * @param null $filename
78
+     * @param string $filename
79 79
      * @return boolean|void
80 80
      * @throws Exception
81 81
      */
Please login to merge, or discard this patch.
install/lib/InstallerPage.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -141,6 +141,9 @@
 block discarded – undo
141 141
         }
142 142
     }
143 143
 
144
+    /**
145
+     * @param string $message
146
+     */
144 147
     private function __appendError(array $codes, XMLElement &$element, $message = null)
145 148
     {
146 149
         if (is_null($message)) {
Please login to merge, or discard this patch.
symphony/lib/core/class.symphony.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -379,7 +379,7 @@  discard block
 block discarded – undo
379 379
      * Accessor for the current `$Flash` instance.
380 380
      *
381 381
      * @since 3.0.0
382
-     * @return SessionFlash
382
+     * @return Session
383 383
      */
384 384
     public static function Flash()
385 385
     {
@@ -711,7 +711,7 @@  discard block
 block discarded – undo
711 711
      * has been found. Returns `FALSE` otherwise.
712 712
      *
713 713
      * @since Symphony 2.3.1
714
-     * @return string|boolean
714
+     * @return boolean
715 715
      */
716 716
     public static function getMigrationVersion()
717 717
     {
@@ -763,7 +763,7 @@  discard block
 block discarded – undo
763 763
      * This methods sets the `GenericExceptionHandler::$enabled` value to `true`.
764 764
      *
765 765
      * @see core.SymphonyErrorPage
766
-     * @param string|XMLElement $message
766
+     * @param string $message
767 767
      *  A description for this error, which can be provided as a string
768 768
      *  or as an XMLElement.
769 769
      * @param string $heading
@@ -802,7 +802,7 @@  discard block
 block discarded – undo
802 802
      * Accessor for `self::$exception`.
803 803
      *
804 804
      * @since Symphony 2.3.2
805
-     * @return Exception|null
805
+     * @return Exception
806 806
      */
807 807
     public static function getException()
808 808
     {
Please login to merge, or discard this patch.