From 37a994abc16eae898eb6692e1d2682496f01124c Mon Sep 17 00:00:00 2001 From: jjergus Date: Mon, 21 Sep 2020 13:36:25 -0700 Subject: [PATCH] replace $GLOBALS with \HH\global_get() --- bin/hh-autoload.hack | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/hh-autoload.hack b/bin/hh-autoload.hack index 407f2b1..069691e 100755 --- a/bin/hh-autoload.hack +++ b/bin/hh-autoload.hack @@ -176,6 +176,6 @@ final class GenerateScript { <<__EntryPoint>> function cli_main(): noreturn { - GenerateScript::main(vec(/* HH_IGNORE_ERROR[2050] */ $GLOBALS['argv'])); + GenerateScript::main(vec(/* HH_FIXME[4110] */ \HH\global_get('argv'))); exit(0); }