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 ( ca5817...c44fbe )
by Dirk
05:48 queued 03:00
created
src/Pinterest/Transport/Request.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -188,8 +188,7 @@  discard block
 block discarded – undo
188 188
 
189 189
                 if (!class_exists("\CURLFile") && defined('CURLOPT_SAFE_UPLOAD')) {
190 190
                     $ch->setOption(CURLOPT_SAFE_UPLOAD, false);
191
-                }
192
-                elseif (class_exists("\CURLFile") && defined('CURLOPT_SAFE_UPLOAD')) {
191
+                } elseif (class_exists("\CURLFile") && defined('CURLOPT_SAFE_UPLOAD')) {
193 192
                     $ch->setOption(CURLOPT_SAFE_UPLOAD, true);
194 193
                 }
195 194
 
@@ -214,8 +213,7 @@  discard block
 block discarded – undo
214 213
 
215 214
         if ($response_data === false && !$ch->hasErrors()) {
216 215
             throw new CurlException("Error: Curl request failed")
217
-        }
218
-        else if($ch->hasErrors()) {
216
+        } else if($ch->hasErrors()) {
219 217
             throw new PinterestException('Error: execute() - cURL error: ' . $ch->getErrors(), $ch->getErrorNumber());
220 218
         }
221 219
 
Please login to merge, or discard this patch.