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 ( d32462...af31de )
by Hilari
05:14 queued 02:44
created
src/Backend/ChainCache.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -149,7 +149,7 @@
 block discarded – undo
149 149
      */
150 150
     private function populatePreviousCaches($index, $key, $item, $timeToLive)
151 151
     {
152
-        for (--$index; $index >= 0 ; $index--) {
152
+        for (--$index; $index >= 0; $index--) {
153 153
             $this->cache[$index]->set($key, $item, $timeToLive);
154 154
         }
155 155
     }
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use Cmp\Cache\Cache;
6 6
 use Cmp\Cache\Exceptions\NotFoundException;
7
-use Cmp\Cache\TimeToLiveAwareCache;
8 7
 use Cmp\Cache\Traits\MultiCacheTrait;
9 8
 use Redis;
10 9
 
Please login to merge, or discard this patch.