Passed
Branch master (7bd300)
by smiley
03:00
created
src/Response/Response.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
58 58
 		}
59 59
 
60 60
 		$this->curl             = $curl;
61
- 		$this->curl_info        = new stdClass;
61
+ 		$this->curl_info = new stdClass;
62 62
 		$this->response_error   = new stdClass;
63 63
 		$this->response_headers = new stdClass;
64 64
 
Please login to merge, or discard this patch.
src/URL.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -93,12 +93,12 @@
 block discarded – undo
93 93
 		}
94 94
 
95 95
 		$url = parse_url($url);
96
-		$this->host      = !isset($url['host'])      ? null : $url['host'];
97
-		$this->port      = !isset($url['port'])      ? null : $url['port'];
98
-		$this->path      = !isset($url['path'])      ? null : $url['path'];
99
-		$this->scheme    = !isset($url['scheme'])    ? null : $url['scheme'];
100
-		$this->query     = !isset($url['query'])     ? null : $url['query'];
101
-		$this->fragment  = !isset($url['fragment'])  ? null : $url['fragment'];
96
+		$this->host      = !isset($url['host']) ? null : $url['host'];
97
+		$this->port      = !isset($url['port']) ? null : $url['port'];
98
+		$this->path      = !isset($url['path']) ? null : $url['path'];
99
+		$this->scheme    = !isset($url['scheme']) ? null : $url['scheme'];
100
+		$this->query     = !isset($url['query']) ? null : $url['query'];
101
+		$this->fragment  = !isset($url['fragment']) ? null : $url['fragment'];
102 102
 
103 103
 		if($this->query){
104 104
 			parse_str($this->query, $this->parsedquery);
Please login to merge, or discard this patch.