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 ( 3d7658...318839 )
by
unknown
01:34
created
src/Abstracts/AbstractItemPool.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
 
92 92
         foreach ($storage as $key => $item) {
93 93
             if ($this->save($item) === true) {
94
-                unset($storage[ $key ]);
94
+                unset($storage[$key]);
95 95
             }
96 96
         }
97 97
 
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
 
126 126
         foreach ($keys as $key) {
127 127
             if ($this->has($key)) {
128
-                $result[ $key ] = $this->get($key, $default);
128
+                $result[$key] = $this->get($key, $default);
129 129
             }
130 130
         }
131 131
 
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
 
199 199
         foreach ($values as $key => $value) {
200 200
             if ($this->set($key, $value, $ttl)) {
201
-                $result[ $key ] = true;
201
+                $result[$key] = true;
202 202
             }
203 203
         }
204 204
 
Please login to merge, or discard this patch.