summaryrefslogtreecommitdiff
path: root/tests/functional/test_array/Test.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/functional/test_array/Test.php')
-rw-r--r--tests/functional/test_array/Test.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/functional/test_array/Test.php b/tests/functional/test_array/Test.php
index 58f0cb8..85d0217 100644
--- a/tests/functional/test_array/Test.php
+++ b/tests/functional/test_array/Test.php
@@ -14,14 +14,14 @@ class Test extends BaseTest
protected function setUpSte(STECore $ste): void
{
- $ste->vars["foo"] = array(
- "a" => array(
+ $ste->vars["foo"] = [
+ "a" => [
"blabla" => "OK"
- ),
+ ],
"b" => "bla"
- );
- $ste->vars["bar"] = array(
+ ];
+ $ste->vars["bar"] = [
"baz" => "a"
- );
+ ];
}
}