File tree Expand file tree Collapse file tree 3 files changed +12
-12
lines changed
Expand file tree Collapse file tree 3 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -4,14 +4,15 @@ services:
44- docker
55env :
66 matrix :
7- - HHVM_VERSION=4.25.1
8- - HHVM_VERSION=4.26.1
9- - HHVM_VERSION=4.27.1
10- - HHVM_VERSION=4.28.2
11- - HHVM_VERSION=4.29.0
12- - HHVM_VERSION=4.30.0
13- - HHVM_VERSION=4.31.0
14- - HHVM_VERSION=latest
7+ - HHVM_VERSION=4.29.0
8+ - HHVM_VERSION=4.30.0
9+ - HHVM_VERSION=4.31.0
10+ - HHVM_VERSION=4.32.0
11+ - HHVM_VERSION=4.33.0
12+ - HHVM_VERSION=4.34.0
13+ - HHVM_VERSION=4.35.0
14+ - HHVM_VERSION=4.36.0
15+ - HHVM_VERSION=latest
1516install :
1617- docker pull hhvm/hhvm:$HHVM_VERSION
1718script :
Original file line number Diff line number Diff line change 1818 }
1919 ],
2020 "require" : {
21- "hhvm" : " ^4.25 " ,
21+ "hhvm" : " ^4.29 " ,
2222 "hhvm/hsl" : " ^4.0" ,
23- "hhvm/hsl-experimental" : " ^4.25 " ,
23+ "hhvm/hsl-experimental" : " ^4.37 " ,
2424 "hhvm/hhvm-autoload" : " ^2.0.10" ,
2525 "facebook/hack-http-request-response-interfaces" : " ^0.2" ,
2626 "nazg/http-server-request-handler" : " ^0.3.0"
Original file line number Diff line number Diff line change @@ -13,8 +13,7 @@ final class MockAsyncRequestHandler implements AsyncRequestHandlerInterface {
1313 IO \WriteHandle $handle ,
1414 ServerRequestInterface $_request
1515 ): Awaitable <ResponseInterface > {
16- await $handle -> writeAsync(json_encode (dict []));
17- if ($handle is IO \NonDisposableHandle ) {
16+ if ($handle is IO \CloseableHandle ) {
1817 await $handle -> closeAsync();
1918 }
2019 return new Response ($handle , StatusCode :: OK );
You can’t perform that action at this time.
0 commit comments