diff options
Diffstat (limited to 'ext/opcache/tests/opt/sccp_025.phpt')
-rw-r--r-- | ext/opcache/tests/opt/sccp_025.phpt | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/ext/opcache/tests/opt/sccp_025.phpt b/ext/opcache/tests/opt/sccp_025.phpt index 8f46dab830..f78e8822d7 100644 --- a/ext/opcache/tests/opt/sccp_025.phpt +++ b/ext/opcache/tests/opt/sccp_025.phpt @@ -11,31 +11,31 @@ opcache.opt_debug_level=0 <?php function test($phpEx) { - $expected_data_sets = array( - 1 => array( - 'id' => 1, - ), - 6 => array( - 'viewtopic' => strval("phpBB/viewtopic.$phpEx"), + $expected_data_sets = array( + 1 => array( + 'id' => 1, + ), + 6 => array( + 'viewtopic' => strval("phpBB/viewtopic.$phpEx"), - ), - ); + ), + ); - $test_cases = array( - array( - 'expected' => array(6), - ), - ); + $test_cases = array( + array( + 'expected' => array(6), + ), + ); - foreach ($test_cases as $case => $case_data) - { - foreach ($case_data['expected'] as $data_set => $expected) - { - $test_cases[$case]['expected'][$data_set] = $expected_data_sets[$expected]; - } - } + foreach ($test_cases as $case => $case_data) + { + foreach ($case_data['expected'] as $data_set => $expected) + { + $test_cases[$case]['expected'][$data_set] = $expected_data_sets[$expected]; + } + } - return $test_cases; + return $test_cases; } var_dump(test("xxx")); ?> |