diff options
Diffstat (limited to 'tests/test_foreach/code.php')
-rw-r--r-- | tests/test_foreach/code.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/test_foreach/code.php b/tests/test_foreach/code.php index 380ee69..1dc5ab9 100644 --- a/tests/test_foreach/code.php +++ b/tests/test_foreach/code.php @@ -1,9 +1,9 @@ <?php function test_func($ste) { - $ste->vars["foo"] = array( - "a" => array("a" => 100, "b" => 200), - "b" => array("a" => 1, "b" => 2), - "c" => array("a" => 42, "b" => 1337) - ); + $ste->vars["foo"] = array( + "a" => array("a" => 100, "b" => 200), + "b" => array("a" => 1, "b" => 2), + "c" => array("a" => 42, "b" => 1337) + ); } |