Skip to content

Commit ee243bc

Browse files
committed
Remove outdated comments in test
1 parent 5fa6dcd commit ee243bc

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)