diff options
Diffstat (limited to 'ext/opcache/tests/opt/sccp_013.phpt')
-rw-r--r-- | ext/opcache/tests/opt/sccp_013.phpt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/opcache/tests/opt/sccp_013.phpt b/ext/opcache/tests/opt/sccp_013.phpt index 18b57a4185..1ed9c7703b 100644 --- a/ext/opcache/tests/opt/sccp_013.phpt +++ b/ext/opcache/tests/opt/sccp_013.phpt @@ -9,11 +9,11 @@ opcache.optimization_level=-1 --FILE-- <?php function loadEntities($entity_information) { - $entity_types = []; - foreach ($entity_information as $info) { - $entity_types[$info] = 1; - } - var_dump((bool)($entity_types[$info])); + $entity_types = []; + foreach ($entity_information as $info) { + $entity_types[$info] = 1; + } + var_dump((bool)($entity_types[$info])); } loadEntities(array("first", "second")); |