Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
danog committed Oct 17, 2022
1 parent 5427835 commit 56805ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/FunctionCallTest.php
Expand Up @@ -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',
Expand Down

0 comments on commit 56805ab

Please sign in to comment.