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.
Passed
Push — master ( 076a0a...6da097 )
by
unknown
01:47
created
src/Abstracts/AbstractItemPool.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
 
100 100
         foreach ($items as $key => $item) {
101 101
             if ($this->save($item) === true) {
102
-                unset($items[ $key ]);
102
+                unset($items[$key]);
103 103
             }
104 104
         }
105 105
 
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
 
132 132
         foreach ($keys as $key) {
133 133
             if ($this->has($key)) {
134
-                $result[ $key ] = $this->get($key, $default);
134
+                $result[$key] = $this->get($key, $default);
135 135
             }
136 136
         }
137 137
 
@@ -200,7 +200,7 @@  discard block
 block discarded – undo
200 200
 
201 201
         foreach ($values as $key => $value) {
202 202
             if ($this->set($key, $value, $ttl)) {
203
-                $result[ $key ] = true;
203
+                $result[$key] = true;
204 204
             }
205 205
         }
206 206
 
Please login to merge, or discard this patch.