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
Pull Request — master (#13)
by
unknown
02:33
created
src/Connection/ElasticConnection.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -299,7 +299,7 @@  discard block
 block discarded – undo
299 299
 
300 300
         $url = "$index/$type/_search";
301 301
 
302
-        $cleanQuery = function ($queryPart, callable $recusiveFn) {
302
+        $cleanQuery = function($queryPart, callable $recusiveFn) {
303 303
             if (!is_array($queryPart)) {
304 304
                 return $queryPart;
305 305
             }
@@ -322,7 +322,7 @@  discard block
 block discarded – undo
322 322
         };
323 323
 
324 324
 
325
-        if(isset($body['query']['bool'])){
325
+        if (isset($body['query']['bool'])) {
326 326
             foreach ($body['query']['bool'] as $key => $item) {
327 327
                 $body['query']['bool'][$key] = $cleanQuery($item, $cleanQuery);
328 328
             }
Please login to merge, or discard this patch.