From 56805ab089fbf394a988861f694b8f985d68ada1 Mon Sep 17 00:00:00 2001 From: Daniil Gentili Date: Mon, 17 Oct 2022 12:54:46 +0200 Subject: [PATCH] Fix --- tests/FunctionCallTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/FunctionCallTest.php b/tests/FunctionCallTest.php index fbc5f690b8a..9b4f21793c5 100644 --- a/tests/FunctionCallTest.php +++ b/tests/FunctionCallTest.php @@ -1493,7 +1493,7 @@ function test() : void { $y2 = date("Y", 10000); $F2 = date("F", 10000); /** @psalm-suppress MixedArgument */ - $F3 = date("F", $_GET["F3"]);', + $F3 = date("F", $GLOBALS["F3"]);', 'assertions' => [ '$y===' => 'numeric-string', '$m===' => 'numeric-string',