summaryrefslogtreecommitdiff
path: root/ext/opcache/tests/bug66176.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/opcache/tests/bug66176.phpt')
-rw-r--r--ext/opcache/tests/bug66176.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/opcache/tests/bug66176.phpt b/ext/opcache/tests/bug66176.phpt
index a91024a616..a7c53c1690 100644
--- a/ext/opcache/tests/bug66176.phpt
+++ b/ext/opcache/tests/bug66176.phpt
@@ -10,8 +10,8 @@ opcache.file_update_protection=0
--FILE--
<?php
function foo($v) {
- global $a;
- return $a[$v];
+ global $a;
+ return $a[$v];
}
$a = array(PHP_VERSION => 1);
var_dump(foo(PHP_VERSION));