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... (93a67d)
by Marc
03:11
created
src/Commands/ConfigureCommand.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -225,7 +225,7 @@
 block discarded – undo
225 225
     }
226 226
 
227 227
     /**
228
-     * @param null $sProfile
228
+     * @param string $sProfile
229 229
      * @return array|mixed
230 230
      */
231 231
     private function loadConfigFile($sProfile = null)
Please login to merge, or discard this patch.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -9,8 +9,6 @@
 block discarded – undo
9 9
 
10 10
 namespace Chapi\Commands;
11 11
 
12
-use Chapi\Component\DependencyInjection\Loader\YamChapiConfigLoader;
13
-use Symfony\Component\Config\FileLocator;
14 12
 use Symfony\Component\Console\Input\InputInterface;
15 13
 use Symfony\Component\Console\Input\InputOption;
16 14
 use Symfony\Component\Console\Output\OutputInterface;
Please login to merge, or discard this patch.
src/Component/DependencyInjection/Loader/YamChapiConfigLoader.php 2 patches
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -26,6 +26,8 @@
 block discarded – undo
26 26
 
27 27
     /**
28 28
      * @inheritdoc
29
+     * @param string $sResource
30
+     * @param string $sProfile
29 31
      */
30 32
     public function loadProfileParameters($sResource, $sProfile)
31 33
     {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@
 block discarded – undo
101 101
             }
102 102
 
103 103
             if (!$this->container->hasExtension($namespace)) {
104
-                $extensionNamespaces = array_filter(array_map(function ($ext) { return $ext->getAlias(); }, $this->container->getExtensions()));
104
+                $extensionNamespaces = array_filter(array_map(function($ext) { return $ext->getAlias(); }, $this->container->getExtensions()));
105 105
                 throw new InvalidArgumentException(sprintf(
106 106
                     'There is no extension able to load the configuration for "%s" (in %s). Looked for namespace "%s", found %s',
107 107
                     $namespace,
Please login to merge, or discard this patch.