Skip to content

Commit

Permalink
replace $GLOBALS with \HH\global_get()
Browse files Browse the repository at this point in the history
  • Loading branch information
jjergus committed Sep 21, 2020
1 parent ac9e813 commit 329e87a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/hh-codegen-verify-signatures.hack
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,6 @@ function verify_signatures_main(): noreturn {
$dir = \substr($dir, 0, $pos);
}
\Facebook\AutoloadMap\initialize();
(new CLIVerifier(vec(/* HH_IGNORE_ERROR[2050] */ $GLOBALS['argv'])))->main();
(new CLIVerifier(vec(/* HH_FIXME[4110] */ \HH\global_get('argv'))))->main();
exit(0);
}

0 comments on commit 329e87a

Please sign in to comment.