Skip to content

Commit aba89f5

Browse files
committed
Merge branch 'PHP-7.3' into PHP-7.4
* PHP-7.3: Remove outdated comments in test
2 parents dacadf5 + 29f4939 commit aba89f5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ext/standard/tests/array/bug78759.phpt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ Bug #78759: array_search in $GLOBALS
44
<?php
55

66
$a = 22;
7-
var_dump($GLOBALS["a"]); // int 22
8-
var_dump(array_search(22, $GLOBALS)); // false
9-
var_dump(array_search(22, $GLOBALS, true)); // false
7+
var_dump($GLOBALS["a"]);
8+
var_dump(array_search(22, $GLOBALS));
9+
var_dump(array_search(22, $GLOBALS, true));
1010

1111
?>
1212
--EXPECT--

0 commit comments

Comments
 (0)