summaryrefslogtreecommitdiff
path: root/tests/functional/test_foreach/Test.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/functional/test_foreach/Test.php')
-rw-r--r--tests/functional/test_foreach/Test.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/functional/test_foreach/Test.php b/tests/functional/test_foreach/Test.php
index 3f8cc73..2fc3d91 100644
--- a/tests/functional/test_foreach/Test.php
+++ b/tests/functional/test_foreach/Test.php
@@ -14,10 +14,10 @@ class Test extends BaseTest
protected function setUpSte(STECore $ste): void
{
- $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"] = [
+ "a" => ["a" => 100, "b" => 200],
+ "b" => ["a" => 1, "b" => 2],
+ "c" => ["a" => 42, "b" => 1337]
+ ];
}
}