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 ( b2df35...c7ca15 )
by Jamie
05:15
created
src/Common/Resource/AbstractResource.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -180,14 +180,14 @@
 block discarded – undo
180 180
     {
181 181
         $operation = $this->getOperation($def);
182 182
 
183
-        $requestFn = function ($marker) use ($operation, $userVals) {
183
+        $requestFn = function($marker) use ($operation, $userVals) {
184 184
             if ($operation->hasParam('marker') && $marker) {
185 185
                 $userVals['marker'] = $marker;
186 186
             }
187 187
             return $this->sendRequest($operation, $userVals);
188 188
         };
189 189
 
190
-        $resourceFn = function (array $data) {
190
+        $resourceFn = function(array $data) {
191 191
             $resource = $this->newInstance();
192 192
             $resource->populateFromArray($data);
193 193
             return $resource;
Please login to merge, or discard this patch.