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 ( 8e4cc8...6e1047 )
by Oleg
33s
created
src/Route4Me/Route4Me.php 1 patch
Spacing   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -43,10 +43,10 @@  discard block
 block discarded – undo
43 43
 
44 44
 		$rpath = realpath($fname);
45 45
 		
46
-		$fp=fopen(realpath($fname),"r");
46
+		$fp = fopen(realpath($fname), "r");
47 47
 		
48
-		$url = self::$baseUrl.$options['url'] . '?' . http_build_query(array_merge(
49
-            array( 'api_key' => self::getApiKey()), $query)
48
+		$url = self::$baseUrl.$options['url'].'?'.http_build_query(array_merge(
49
+            array('api_key' => self::getApiKey()), $query)
50 50
         );
51 51
 		
52 52
 		//self::simplePrint($body);die("");
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
 		//echo "code = $code <br>";
81 81
 		$json = json_decode($result, true);
82 82
 		//var_dump($json); die("");
83
-        if (200 == $code) {
83
+        if (200==$code) {
84 84
             return $json;
85 85
         } elseif (isset($json['errors'])) {
86 86
             throw new ApiError(implode(', ', $json['errors']));
@@ -102,26 +102,26 @@  discard block
 block discarded – undo
102 102
         );
103 103
         
104 104
         if (isset($options['HTTPHEADER'])) {
105
-            $headers[]=$options['HTTPHEADER'];
105
+            $headers[] = $options['HTTPHEADER'];
106 106
         }
107 107
 
108 108
 		if (isset($options['HTTPHEADERS'])) {
109
-		    foreach ($options['HTTPHEADERS'] As $header) $headers[]=$header;
109
+		    foreach ($options['HTTPHEADERS'] As $header) $headers[] = $header;
110 110
         }
111 111
         //self::simplePrint($headers); die("");
112 112
         $ch = curl_init();
113
-        $url = $options['url'] . '?' . http_build_query(array_merge(
114
-            $query, array( 'api_key' => self::getApiKey())
113
+        $url = $options['url'].'?'.http_build_query(array_merge(
114
+            $query, array('api_key' => self::getApiKey())
115 115
         ));
116 116
 		
117 117
 		//$jfile=json_encode($body); echo $jfile; die("");
118 118
 
119 119
         //self::simplePrint($headers); die("");
120
-		$baseUrl=self::getBaseUrl();
120
+		$baseUrl = self::getBaseUrl();
121 121
 		
122
-		if (strpos($url,'move_route_destination')>0) $baseUrl='https://www.route4me.com';
122
+		if (strpos($url, 'move_route_destination')>0) $baseUrl = 'https://www.route4me.com';
123 123
         $curlOpts = arraY(
124
-            CURLOPT_URL            => $baseUrl. $url,
124
+            CURLOPT_URL            => $baseUrl.$url,
125 125
             CURLOPT_RETURNTRANSFER => true,
126 126
             CURLOPT_TIMEOUT        => 60,
127 127
             CURLOPT_FOLLOWLOCATION => true,
@@ -133,14 +133,14 @@  discard block
 block discarded – undo
133 133
 		//echo "url=".$baseUrl.$url."<br>";die("");
134 134
         curl_setopt_array($ch, $curlOpts);
135 135
 		
136
-		if ($file !=null) {
136
+		if ($file!=null) {
137 137
 			curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
138
-			$fp=fopen($file,'r');
139
-			curl_setopt($ch, CURLOPT_INFILE , $fp);
138
+			$fp = fopen($file, 'r');
139
+			curl_setopt($ch, CURLOPT_INFILE, $fp);
140 140
 			curl_setopt($ch, CURLOPT_INFILESIZE, filesize($file));
141 141
 		}
142 142
 		
143
-        switch($method) {
143
+        switch ($method) {
144 144
         case 'DELETE':
145 145
             curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "DELETE"); 
146 146
 
@@ -165,7 +165,7 @@  discard block
 block discarded – undo
165 165
 			break;
166 166
         case 'POST':
167 167
 			if (isset($query)) {
168
-            	curl_setopt($ch,  CURLOPT_POSTFIELDS, json_encode($query)); 
168
+            	curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($query)); 
169 169
 			}
170 170
             
171 171
 			//echo json_encode($body); die("");
@@ -179,8 +179,8 @@  discard block
 block discarded – undo
179 179
 
180 180
         $result = curl_exec($ch);
181 181
 		//var_dump($result); die("");
182
-		$isxml=FALSE;
183
-		$jxml="";
182
+		$isxml = FALSE;
183
+		$jxml = "";
184 184
 		if (strpos($result, '<?xml')>-1)
185 185
 		{
186 186
 			$xml = simplexml_load_string($result);
@@ -195,7 +195,7 @@  discard block
 block discarded – undo
195 195
 			$json = $jxml;
196 196
 		} else $json = json_decode($result, true);
197 197
 		//var_dump($json); die("");
198
-        if (200 == $code) {
198
+        if (200==$code) {
199 199
             return $json;
200 200
         } elseif (isset($json['errors'])) {
201 201
             throw new ApiError(implode(', ', $json['errors']));
@@ -226,7 +226,7 @@  discard block
 block discarded – undo
226 226
 		
227 227
 		curl_setopt_array($ch, $curlOpts);
228 228
 		
229
-        switch($method) {
229
+        switch ($method) {
230 230
         case 'DELETE':
231 231
             curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "DELETE"); 
232 232
 
@@ -264,8 +264,8 @@  discard block
 block discarded – undo
264 264
 
265 265
 		$result = curl_exec($ch);
266 266
         
267
-		$isxml=FALSE;
268
-		$jxml="";
267
+		$isxml = FALSE;
268
+		$jxml = "";
269 269
 		if (strpos($result, '<?xml')>-1)
270 270
 		{
271 271
 			$xml = simplexml_load_string($result);
@@ -281,7 +281,7 @@  discard block
 block discarded – undo
281 281
 		} else $json = json_decode($result, true);
282 282
 		
283 283
 		
284
-        if (200 == $code) {
284
+        if (200==$code) {
285 285
             return $json;
286 286
         } elseif (isset($json['errors'])) {
287 287
             throw new ApiError(implode(', ', $json['errors']));
Please login to merge, or discard this patch.