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 ( 00635d...fec2cb )
by Anderson
03:41 queued 01:27
created
src/Query/ElasticParser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
         $this->query = $query;
28 28
         $doctrineQuery = new Query($query->getEntityManager());
29 29
         $doctrineQuery->setDQL($query->getDQL());
30
-        $this->doctrineParser = new Parser($doctrineQuery);;
30
+        $this->doctrineParser = new Parser($doctrineQuery); ;
31 31
     }
32 32
 
33 33
     public function getAST() {
Please login to merge, or discard this patch.
src/Connection/ElasticConnection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -210,7 +210,7 @@
 block discarded – undo
210 210
         );
211 211
 
212 212
         $params = array_merge_recursive($defaultParams, $mergeParams);
213
-        $existsParams = array_filter($params, function ($key) {
213
+        $existsParams = array_filter($params, function($key) {
214 214
             return in_array($key, ['id', 'index', 'type', 'refresh']);
215 215
         }, ARRAY_FILTER_USE_KEY);
216 216
 
Please login to merge, or discard this patch.
src/Service/ElasticSearchService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
                     $data = $rowData['_source'];
37 37
                     $data['_id'] = $rowData['_id'];
38 38
 
39
-                    if(isset($results['aggregations'])) {
39
+                    if (isset($results['aggregations'])) {
40 40
                         $aggregations = $results['aggregations'];
41 41
                         $iterator->append($aggregations);
42 42
                         unset($results['aggregations']);
Please login to merge, or discard this patch.