Skip to content

Commit bad085e

Browse files
committed
:octocat: HTTPResponse -> HTTPResponseInterface
1 parent 606cb3d commit bad085e

5 files changed

+8
-26
lines changed

src/CurlClient.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public function __construct(ContainerInterface $options){
5050
}
5151

5252
/** @inheritdoc */
53-
public function request(string $url, array $params = null, string $method = null, $body = null, array $headers = null):HTTPResponse{
53+
public function request(string $url, array $params = null, string $method = null, $body = null, array $headers = null):HTTPResponseInterface{
5454
$this->responseHeaders = new \stdClass;
5555

5656
try{

src/GuzzleClient.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public function setClient(Client $http):HTTPClientInterface{
4141
}
4242

4343
/** @inheritdoc */
44-
public function request(string $url, array $params = null, string $method = null, $body = null, array $headers = null):HTTPResponse{
44+
public function request(string $url, array $params = null, string $method = null, $body = null, array $headers = null):HTTPResponseInterface{
4545

4646
try{
4747
$parsedURL = parse_url($url);

src/HTTPClientInterface.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ public function __construct(ContainerInterface $options);
3030
* @param mixed $body
3131
* @param array $headers
3232
*
33-
* @return \chillerlan\HTTP\HTTPResponse
33+
* @return \chillerlan\HTTP\HTTPResponseInterface
3434
* @throws \chillerlan\HTTP\HTTPClientException
3535
*/
36-
public function request(string $url, array $params = null, string $method = null, $body = null, array $headers = null):HTTPResponse;
36+
public function request(string $url, array $params = null, string $method = null, $body = null, array $headers = null):HTTPResponseInterface;
3737

3838
/**
3939
* @param array $headers

src/StreamClient.php

+2-11
Original file line numberDiff line numberDiff line change
@@ -25,17 +25,8 @@ public function __construct(ContainerInterface $options){
2525
}
2626
}
2727

28-
/**
29-
* @param string $url
30-
* @param array $params
31-
* @param string $method
32-
* @param mixed $body
33-
* @param array $headers
34-
*
35-
* @return \chillerlan\HTTP\HTTPResponse
36-
* @throws \chillerlan\HTTP\HTTPClientException
37-
*/
38-
public function request(string $url, array $params = null, string $method = null, $body = null, array $headers = null):HTTPResponse{
28+
/** @inheritdoc */
29+
public function request(string $url, array $params = null, string $method = null, $body = null, array $headers = null):HTTPResponseInterface{
3930

4031
try{
4132
$parsedURL = parse_url($url);

src/TinyCurlClient.php

+2-11
Original file line numberDiff line numberDiff line change
@@ -39,17 +39,8 @@ public function setClient(Request $http):HTTPClientInterface{
3939
return $this;
4040
}
4141

42-
/**
43-
* @param string $url
44-
* @param array $params
45-
* @param string $method
46-
* @param mixed $body
47-
* @param array $headers
48-
*
49-
* @return \chillerlan\HTTP\HTTPResponse
50-
* @throws \chillerlan\HTTP\HTTPClientException
51-
*/
52-
public function request(string $url, array $params = null, string $method = null, $body = null, array $headers = null):HTTPResponse{
42+
/** @inheritdoc */
43+
public function request(string $url, array $params = null, string $method = null, $body = null, array $headers = null):HTTPResponseInterface{
5344

5445
try{
5546

0 commit comments

Comments
 (0)