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.
Test Failed
Push — master ( 507b94...536cf6 )
by sunsky
03:32 queued 01:07
created
src/Request.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -35,15 +35,15 @@  discard block
 block discarded – undo
35 35
 		'timeout_ms'      => 'CURLOPT_TIMEOUT_MS', // milliseconds,  libcurl version > 7.36.0 ,
36 36
 	);
37 37
 	public $curlHandle;
38
-    protected $options = array(
39
-        'CURLOPT_MAXREDIRS' => 10,
38
+	protected $options = array(
39
+		'CURLOPT_MAXREDIRS' => 10,
40 40
 //        'CURLOPT_IPRESOLVE' => CURL_IPRESOLVE_V4,//IPv4
41
-        'header' => true,
42
-        'method' => self::GET,
43
-        'transfer' => true,
44
-        'follow_location' => true,
45
-        'timeout' => 0);
46
-    protected $endCallback;
41
+		'header' => true,
42
+		'method' => self::GET,
43
+		'transfer' => true,
44
+		'follow_location' => true,
45
+		'timeout' => 0);
46
+	protected $endCallback;
47 47
 	protected $withURIQuery;
48 48
 
49 49
 	protected function __construct() {
@@ -222,7 +222,7 @@  discard block
 block discarded – undo
222 222
 
223 223
 		self::filterAndRaw($this->options);
224 224
 
225
-        curl_setopt_array($this->curlHandle, $this->options);
225
+		curl_setopt_array($this->curlHandle, $this->options);
226 226
 
227 227
 		return $this;
228 228
 	}
Please login to merge, or discard this patch.