File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1818 },
1919 "require" : {
2020 "php" : " >=5.3" ,
21- "clue/buzz-react" : " ^2.9" ,
2221 "clue/json-stream" : " ^0.1" ,
2322 "react/event-loop" : " ^1.0 || ^0.5 || ^0.4 || ^0.3" ,
23+ "react/http" : " ^1.0" ,
2424 "react/promise" : " ^2.0 || ^1.1" ,
2525 "react/promise-stream" : " ^1.0" ,
2626 "react/socket" : " ^1.0" ,
Original file line number Diff line number Diff line change 22
33namespace Clue \React \Docker ;
44
5- use Clue \React \Buzz \Browser ;
65use Clue \React \Docker \Io \ResponseParser ;
76use Clue \React \Docker \Io \StreamingParser ;
87use React \EventLoop \LoopInterface ;
8+ use React \Http \Browser ;
99use React \Promise \PromiseInterface ;
1010use React \Stream \ReadableStreamInterface ;
1111use Rize \UriTemplate ;
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ class ClientTest extends TestCase
2020 public function setUp ()
2121 {
2222 $ this ->loop = $ this ->getMockBuilder ('React\EventLoop\LoopInterface ' )->getMock ();
23- $ this ->browser = $ this ->getMockBuilder ('Clue\ React\Buzz \Browser ' )->disableOriginalConstructor ()->getMock ();
23+ $ this ->browser = $ this ->getMockBuilder ('React\Http \Browser ' )->disableOriginalConstructor ()->getMock ();
2424
2525 $ this ->parser = $ this ->getMockBuilder ('Clue\React\Docker\Io\ResponseParser ' )->getMock ();
2626 $ this ->streamingParser = $ this ->getMockBuilder ('Clue\React\Docker\Io\StreamingParser ' )->getMock ();
Original file line number Diff line number Diff line change @@ -399,7 +399,7 @@ public function testImageCreateStreamMissingWillEmitJsonError()
399399
400400 // will emit "error" with RuntimeException and close
401401 $ old && $ stream ->on ('error ' , $ this ->expectCallableOnceParameter ('RuntimeException ' ));
402- $ old || $ stream ->on ('error ' , $ this ->expectCallableOnceParameter ('Clue\ React\Buzz \Message\ResponseException ' ));
402+ $ old || $ stream ->on ('error ' , $ this ->expectCallableOnceParameter ('React\Http \Message\ResponseException ' ));
403403 $ stream ->on ('close ' , $ this ->expectCallableOnce ());
404404
405405 $ this ->loop ->run ();
You can’t perform that action at this time.
0 commit comments