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 — 2.9 ( 938d91...972a29 )
by Thorsten
16:10
created
phpmyfaq/inc/PMF/Search/Elasticsearch.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -76,9 +76,9 @@  discard block
 block discarded – undo
76 76
                     'query' => [
77 77
                         'bool' => [
78 78
                             'should' => [
79
-                                [ 'match' => [ 'question' => $searchTerm ] ],
80
-                                [ 'match' => [ 'answer' => $searchTerm ] ],
81
-                                [ 'match' => [ 'keywords' => $searchTerm ] ]
79
+                                ['match' => ['question' => $searchTerm]],
80
+                                ['match' => ['answer' => $searchTerm]],
81
+                                ['match' => ['keywords' => $searchTerm]]
82 82
                             ]
83 83
                         ]
84 84
 
@@ -94,14 +94,14 @@  discard block
 block discarded – undo
94 94
                     'query' => [
95 95
                         'filtered' => [
96 96
                             'filter' => [
97
-                                'term' => [ 'lang' => $this->getLanguage() ]
97
+                                'term' => ['lang' => $this->getLanguage()]
98 98
                             ],
99 99
                             'query' => [
100 100
                                 'bool' => [
101 101
                                     'should' => [
102
-                                        [ 'match' => [ 'question' => $searchTerm ] ],
103
-                                        [ 'match' => [ 'answer' => $searchTerm ] ],
104
-                                        [ 'match' => [ 'keywords' => $searchTerm ] ]
102
+                                        ['match' => ['question' => $searchTerm]],
103
+                                        ['match' => ['answer' => $searchTerm]],
104
+                                        ['match' => ['keywords' => $searchTerm]]
105 105
                                     ]
106 106
                                 ]
107 107
                             ]
Please login to merge, or discard this patch.