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 — master ( 5bc44c...674798 )
by François
04:27
created
src/SURFnet/VPN/Server/Config.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
 
37 37
     public static function fromFile($configFile)
38 38
     {
39
-        if(false === $fileContent = @file_get_contents($configFile)) {
39
+        if (false === $fileContent = @file_get_contents($configFile)) {
40 40
             throw new ConfigException(sprintf('unable to read configuration file "%s"', $configFile));
41 41
         }
42 42
 
Please login to merge, or discard this patch.
src/SURFnet/VPN/Server/Api/Response.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
             $this->statusCode
54 54
         ];
55 55
 
56
-        foreach($this->headers as $key => $value) {
56
+        foreach ($this->headers as $key => $value) {
57 57
             $output[] = sprintf('%s: %s', $key, $value);
58 58
         }
59 59
         $output[] = $this->body;
Please login to merge, or discard this patch.