Skip to content

Commit 29f4939

Browse files
committed
Merge branch 'PHP-7.2' into PHP-7.3
* PHP-7.2: Remove outdated comments in test
2 parents 8d2a9d8 + ee243bc commit 29f4939

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)