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
Branch feature/normalise_config_files... (35a6c3)
by Marc
03:27
created
src/Component/Config/ChapiConfig.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
 
36 36
     /**
37 37
      * ChapiConfig constructor.
38
-     * @param array $aDirectoryPaths
38
+     * @param string[] $aDirectoryPaths
39 39
      * @param YamlParser $oParser
40 40
      * @param string $sActiveProfile
41 41
      */
Please login to merge, or discard this patch.
src/Component/DependencyInjection/Loader/ChapiConfigLoaderInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -14,6 +14,7 @@
 block discarded – undo
14 14
 {
15 15
     /**
16 16
      *
17
+     * @return void
17 18
      */
18 19
     public function loadProfileParameters();
19 20
 }
20 21
\ No newline at end of file
Please login to merge, or discard this patch.
src/Commands/AbstractCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -221,7 +221,7 @@
 block discarded – undo
221 221
             $this->getProfileName()
222 222
         );
223 223
 
224
-        $_oChapiConfigLoader  = new ChapiConfigLoader($_oContainer, $_oChapiConfig);
224
+        $_oChapiConfigLoader = new ChapiConfigLoader($_oContainer, $_oChapiConfig);
225 225
         $_oChapiConfigLoader->loadProfileParameters();
226 226
 
227 227
         // load basic parameters
Please login to merge, or discard this patch.