Skip to content
This repository has been archived by the owner on Oct 1, 2023. It is now read-only.

Commit

Permalink
update hsl-experimental dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
fredemmott committed Dec 5, 2018
1 parent 1ec3631 commit ef39116
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"require": {
"hhvm/hsl": "^3.26",
"hhvm/type-assert": "^3.2",
"hhvm/hsl-experimental": "^3.29"
"hhvm/hsl-experimental": "^3.29.5"
},
"require-dev": {
"hhvm/hhast": "^3.29.1",
Expand Down
12 changes: 6 additions & 6 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions src/CLIBase.hh
Original file line number Diff line number Diff line change
Expand Up @@ -171,9 +171,9 @@ abstract class CLIBase implements ITerminal {
* @see CLIBase::mainAsync
*/
final public static async function runAsync(): Awaitable<int> {
$in = IO\stdin();
$out = IO\stdout();
$err = IO\stderr();
$in = IO\request_input();
$out = IO\request_output();
$err = IO\request_error();
try {
$responder = new static(
vec(/* HH_IGNORE_ERROR[2050] */ $GLOBALS['argv']),
Expand Down

0 comments on commit ef39116

Please sign in to comment.