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 ( 1e86a6...7bf065 )
by Axel
9s
created
src/Cache/Pool/TextCacheItemPool.php 1 patch
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -128,8 +128,10 @@
 block discarded – undo
128 128
     public function clear() {
129 129
         $items = glob("{$this->cacheFolder}/*.txt"); // get all file names
130 130
         foreach($items as $item){ // iterate files
131
-          if(is_file($item))
132
-            unlink($item); // delete file
131
+          if(is_file($item)) {
132
+                      unlink($item);
133
+          }
134
+          // delete file
133 135
         }
134 136
         $this->deferredItems = [];
135 137
         return true;
Please login to merge, or discard this patch.