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 ( fb2729...fa3c5f )
by Gytis
04:31 queued 10s
created
src/Core/Type/TypeFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -147,7 +147,7 @@
 block discarded – undo
147 147
         $openScopes = ['<' => 0, '{' => 0, '(' => 0];
148 148
 
149 149
         $len = strlen($rawType);
150
-        for ($pos=0; $pos<=$len-1; $pos++) {
150
+        for ($pos = 0; $pos <= $len - 1; $pos++) {
151 151
             $ch = $rawType[$pos];
152 152
 
153 153
             '<' === $ch && $openScopes['<']++;
Please login to merge, or discard this patch.