File tree 3 files changed +16
-6
lines changed
3 files changed +16
-6
lines changed Original file line number Diff line number Diff line change 12
12
],
13
13
"require" : {
14
14
"php" : " >=5.3" ,
15
- "react/promise" : " ^3 || ^2.1 || ^1.2.1" ,
16
- "react/socket" : " ^1.12 " ,
15
+ "react/promise" : " ^3.2 || ^2.1 || ^1.2.1" ,
16
+ "react/socket" : " ^1.16 " ,
17
17
"ringcentral/psr7" : " ^1.2"
18
18
},
19
19
"require-dev" : {
20
20
"phpunit/phpunit" : " ^9.6 || ^5.7 || ^4.8.36" ,
21
- "react/async" : " ^4 || ^3 || ^2" ,
21
+ "react/async" : " ^4.3 || ^3 || ^2" ,
22
22
"react/event-loop" : " ^1.2" ,
23
- "react/http" : " ^1.5 " ,
24
- "react/promise-timer" : " ^1.10 "
23
+ "react/http" : " ^1.11 " ,
24
+ "react/promise-timer" : " ^1.11 "
25
25
},
26
26
"autoload" : {
27
27
"psr-4" : {
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ class ProxyConnector implements ConnectorInterface
60
60
public function __construct (
61
61
#[\SensitiveParameter]
62
62
$ proxyUrl ,
63
- ConnectorInterface $ connector = null ,
63
+ $ connector = null ,
64
64
array $ httpHeaders = array ()
65
65
) {
66
66
// support `http+unix://` scheme for Unix domain socket (UDS) paths
@@ -84,6 +84,10 @@ public function __construct(
84
84
throw new InvalidArgumentException ('Invalid proxy URL " ' . $ proxyUrl . '" ' );
85
85
}
86
86
87
+ if ($ connector !== null && !$ connector instanceof ConnectorInterface) { // manual type check to support legacy PHP < 7.1
88
+ throw new \InvalidArgumentException ('Argument #2 ($connector) expected null|React\Socket\ConnectorInterface ' );
89
+ }
90
+
87
91
// apply default port and TCP/TLS transport for given scheme
88
92
if (!isset ($ parts ['port ' ])) {
89
93
$ parts ['port ' ] = $ parts ['scheme ' ] === 'https ' ? 443 : 80 ;
Original file line number Diff line number Diff line change @@ -48,6 +48,12 @@ public function testInvalidHttpsUnixScheme()
48
48
new ProxyConnector ('https+unix:///tmp/proxy.sock ' , $ this ->connector );
49
49
}
50
50
51
+ public function testContructorThrowsExceptionForInvalidConnector ()
52
+ {
53
+ $ this ->setExpectedException ('InvalidArgumentException ' , 'Argument #2 ($connector) expected null|React\Socket\ConnectorInterface ' );
54
+ new ProxyConnector ('proxy.example.com ' , 'connector ' );
55
+ }
56
+
51
57
public function testCreatesConnectionToHttpPort ()
52
58
{
53
59
$ promise = new Promise (function () { });
You can’t perform that action at this time.
0 commit comments