File tree 3 files changed +15
-11
lines changed
3 files changed +15
-11
lines changed Original file line number Diff line number Diff line change @@ -24,13 +24,15 @@ class GuzzleClient extends HTTPClientAbstract{
24
24
/**
25
25
* GuzzleClient constructor.
26
26
*
27
- * @param \chillerlan\Traits\ContainerInterface|null $options
28
- * @param \GuzzleHttp\Client|null $http
27
+ * @param \chillerlan\Traits\ContainerInterface $options
28
+ * @param \GuzzleHttp\Client|null $http
29
29
*/
30
- public function __construct (ContainerInterface $ options = null , Client $ http = null ){
30
+ public function __construct (ContainerInterface $ options , Client $ http = null ){
31
31
parent ::__construct ($ options );
32
32
33
- $ this ->setClient ($ http );
33
+ if ($ http instanceof Client){
34
+ $ this ->setClient ($ http );
35
+ }
34
36
}
35
37
36
38
/** @inheritdoc */
Original file line number Diff line number Diff line change @@ -24,11 +24,11 @@ interface HTTPClientInterface{
24
24
public function __construct (ContainerInterface $ options );
25
25
26
26
/**
27
- * @param string $url
28
- * @param array $params
29
- * @param string $method
30
- * @param mixed $body
31
- * @param array $headers
27
+ * @param string $url
28
+ * @param array|null $params
29
+ * @param string|null $method
30
+ * @param mixed|null $body
31
+ * @param array|null $headers
32
32
*
33
33
* @return \chillerlan\HTTP\HTTPResponseInterface
34
34
* @throws \chillerlan\HTTP\HTTPClientException
Original file line number Diff line number Diff line change @@ -24,12 +24,14 @@ class TinyCurlClient extends HTTPClientAbstract{
24
24
* TinyCurlClient constructor.
25
25
*
26
26
* @param \chillerlan\Traits\ContainerInterface $options
27
- * @param \chillerlan\TinyCurl\Request $http
27
+ * @param \chillerlan\TinyCurl\Request|null $http
28
28
*/
29
29
public function __construct (ContainerInterface $ options , Request $ http = null ){
30
30
parent ::__construct ($ options );
31
31
32
- $ this ->setClient ($ http );
32
+ if ($ http instanceof Request){
33
+ $ this ->setClient ($ http );
34
+ }
33
35
}
34
36
35
37
/** @inheritdoc */
You can’t perform that action at this time.
0 commit comments