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 ( 0fedc1...47b4c9 )
by Thorsten
15:08
created
phpmyfaq/inc/PMF/Instance/Elasticsearch.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@
 block discarded – undo
87 87
     /**
88 88
      * Creates the Elasticsearch index.
89 89
      *
90
-     * @return array
90
+     * @return boolean
91 91
      */
92 92
     public function createIndex()
93 93
     {
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
     public function createIndex()
93 93
     {
94 94
         $this->client->indices()->create($this->getParams());
95
-        return $this->putMapping();;
95
+        return $this->putMapping(); ;
96 96
     }
97 97
 
98 98
     /**
@@ -177,7 +177,7 @@  discard block
 block discarded – undo
177 177
                 'categories' => $faq['category_id']
178 178
             ];
179 179
 
180
-            if ($i % 1000 == 0) {
180
+            if ($i%1000 == 0) {
181 181
                 $responses = $this->client->bulk($params);
182 182
                 $params = ['body' => []];
183 183
                 unset($responses);
Please login to merge, or discard this patch.