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.
Passed
Push — master ( ce9742...4c1af4 )
by sunsky
11:33
created
src/Response.php 1 patch
Braces   +11 added lines, -6 removed lines patch added patch discarded remove patch
@@ -73,10 +73,11 @@  discard block
 block discarded – undo
73 73
         $headers = explode(PHP_EOL, $headers);
74 74
         array_shift($headers); // HTTP HEADER
75 75
         foreach ($headers as $h) {
76
-            if (false !== strpos($h, ':'))
77
-                list($k, $v) = explode(':', $h, 2);
78
-            else
79
-                list($k, $v) = array($h, '');
76
+            if (false !== strpos($h, ':')) {
77
+                            list($k, $v) = explode(':', $h, 2);
78
+            } else {
79
+                            list($k, $v) = array($h, '');
80
+            }
80 81
 
81 82
             $this->header[trim($k)] = trim($v);
82 83
         }
@@ -97,10 +98,14 @@  discard block
 block discarded – undo
97 98
     public function unserializeBody()
98 99
     {
99 100
         if (isset($this->request->expectsMime)) {
100
-            if (Mime::getFullMime($this->request->expectsMime) !== $this->contentType) throw new UnexpectedResponseException('expected mime can not be matched, real mime:'. $this->contentType. ', expected mime:'. Mime::getFullMime($this->request->expectsMime));
101
+            if (Mime::getFullMime($this->request->expectsMime) !== $this->contentType) {
102
+            	throw new UnexpectedResponseException('expected mime can not be matched, real mime:'. $this->contentType. ', expected mime:'. Mime::getFullMime($this->request->expectsMime));
103
+            }
101 104
             $clz = "\MultiHttp\\Handler\\".ucfirst($this->request->expectsMime);
102 105
             $inst = new $clz;
103
-            if (!($inst instanceof Handler\IHandler)) throw new InvalidOperationException($clz . ' is not implement of  IHandler');
106
+            if (!($inst instanceof Handler\IHandler)) {
107
+            	throw new InvalidOperationException($clz . ' is not implement of  IHandler');
108
+            }
104 109
             $this->body = $inst->decode($this->body);
105 110
         }
106 111
     }
Please login to merge, or discard this patch.
src/Request.php 1 patch
Braces   +27 added lines, -10 removed lines patch added patch discarded remove patch
@@ -246,7 +246,9 @@  discard block
 block discarded – undo
246 246
      */
247 247
     public function getIni($field = null)
248 248
     {
249
-        if(!$field) return $this->options;
249
+        if(!$field) {
250
+        	return $this->options;
251
+        }
250 252
         $full = self::fullOption($field);
251 253
         return isset($this->options[$full]) ? $this->options[$full] : false;
252 254
     }
@@ -437,12 +439,15 @@  discard block
 block discarded – undo
437 439
     public function send($isMultiCurl = false)
438 440
     {
439 441
         try {
440
-            if (!$this->hasInitialized)
441
-                $this->applyOptions();
442
+            if (!$this->hasInitialized) {
443
+                            $this->applyOptions();
444
+            }
442 445
             $response = $this->makeResponse($isMultiCurl);
443 446
             $response->parse();
444 447
         } catch (\Exception $e) {
445
-            if(!isset($response)) $response = Response::create($this, null, null, null, null);
448
+            if(!isset($response)) {
449
+            	$response = Response::create($this, null, null, null, null);
450
+            }
446 451
             $response->error = $e->getMessage();
447 452
             $response->errorCode = 999;
448 453
         }
@@ -506,12 +511,19 @@  discard block
 block discarded – undo
506 511
         $this->serializeBody();
507 512
 
508 513
         //try fix url
509
-        if (strpos($this->options['url'], '://') === FALSE) $this->options['url'] = 'http://' . $this->options['url'];
514
+        if (strpos($this->options['url'], '://') === FALSE) {
515
+        	$this->options['url'] = 'http://' . $this->options['url'];
516
+        }
510 517
         $components = parse_url($this->options['url']);
511
-        if(FALSE === $components) throw new InvalidArgumentException('formatting url occurs error: '. $this->options['url']);
518
+        if(FALSE === $components) {
519
+        	throw new InvalidArgumentException('formatting url occurs error: '. $this->options['url']);
520
+        }
512 521
         if($this->withURIQuery){
513
-            if(isset($components['query'])) $components['query'] .= '&'. trim($this->withURIQuery);
514
-            else $components['query'] = trim($this->withURIQuery);
522
+            if(isset($components['query'])) {
523
+            	$components['query'] .= '&'. trim($this->withURIQuery);
524
+            } else {
525
+            	$components['query'] = trim($this->withURIQuery);
526
+            }
515 527
         }
516 528
         $this->options['url'] = self::combineUrl($components);
517 529
 
@@ -553,7 +565,10 @@  discard block
 block discarded – undo
553 565
         }
554 566
 
555 567
         $cURLOptions = self::filterAndRaw($this->options);
556
-        if(isset($this->body))$cURLOptions[CURLOPT_POSTFIELDS] = $this->body;//use serialized body not raw data
568
+        if(isset($this->body)) {
569
+        	$cURLOptions[CURLOPT_POSTFIELDS] = $this->body;
570
+        }
571
+        //use serialized body not raw data
557 572
         curl_setopt_array($this->curlHandle, $cURLOptions);
558 573
 
559 574
         return $this;
@@ -566,7 +581,9 @@  discard block
 block discarded – undo
566 581
             $this->options[CURLOPT_POST] = true;
567 582
             $clz = '\\MultiHttp\\Handler\\'.ucfirst($this->sendMime);
568 583
             $inst = new $clz;
569
-            if (!($inst instanceof Handler\IHandler)) throw new InvalidOperationException($clz . ' is not implement of  IHandler');
584
+            if (!($inst instanceof Handler\IHandler)) {
585
+            	throw new InvalidOperationException($clz . ' is not implement of  IHandler');
586
+            }
570 587
             $this->body = $inst->encode($this->options['data']);
571 588
         }
572 589
     }
Please login to merge, or discard this patch.
src/Handler/Json.php 1 patch
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,7 +34,9 @@  discard block
 block discarded – undo
34 34
     public function decode($body)
35 35
     {
36 36
         $parsed = json_decode($body, true);
37
-        if(json_last_error() !== JSON_ERROR_NONE)throw new UnexpectedResponseException('parsing json occurs error: '.  self::jsonLastErrorMsg() . ', raw body: ' .$body  );
37
+        if(json_last_error() !== JSON_ERROR_NONE) {
38
+        	throw new UnexpectedResponseException('parsing json occurs error: '.  self::jsonLastErrorMsg() . ', raw body: ' .$body  );
39
+        }
38 40
         return $parsed;
39 41
     }
40 42
 
@@ -42,7 +44,9 @@  discard block
 block discarded – undo
42 44
      * @return string
43 45
      */
44 46
     private static function jsonLastErrorMsg(){
45
-        if(function_exists('json_last_error_msg')) return json_last_error_msg();
47
+        if(function_exists('json_last_error_msg')) {
48
+        	return json_last_error_msg();
49
+        }
46 50
         switch (json_last_error()) {
47 51
             case JSON_ERROR_NONE:
48 52
                 return ' - No errors';
Please login to merge, or discard this patch.