diff options
Diffstat (limited to 'ext/opcache/tests/opt/sccp_012.phpt')
-rw-r--r-- | ext/opcache/tests/opt/sccp_012.phpt | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/ext/opcache/tests/opt/sccp_012.phpt b/ext/opcache/tests/opt/sccp_012.phpt index 0e3b872e0c..1ad1ed3b4c 100644 --- a/ext/opcache/tests/opt/sccp_012.phpt +++ b/ext/opcache/tests/opt/sccp_012.phpt @@ -13,16 +13,16 @@ opcache.preload= function foo() { $o = new stdClass(); $o->foo = 0; - $i = 1; - $c = $i < 2; - if ($c) { - $k = 2 * $i; - $o->foo = $i; - echo $o->foo; - } - $o->foo += 2; - $o->foo++; - echo $o->foo; + $i = 1; + $c = $i < 2; + if ($c) { + $k = 2 * $i; + $o->foo = $i; + echo $o->foo; + } + $o->foo += 2; + $o->foo++; + echo $o->foo; } ?> --EXPECTF-- |