From 11932a471b4ef10faf76b6fcfe30a35f946eb7ab Mon Sep 17 00:00:00 2001 From: Laria Carolin Chabowski Date: Sun, 13 Sep 2020 21:44:30 +0200 Subject: Use short array syntax We can use it now that we switched to PHP 7.3 --- tests/functional/test_tagname/Test.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/functional/test_tagname/Test.php') diff --git a/tests/functional/test_tagname/Test.php b/tests/functional/test_tagname/Test.php index 8e3d8f6..38f26c2 100644 --- a/tests/functional/test_tagname/Test.php +++ b/tests/functional/test_tagname/Test.php @@ -14,12 +14,12 @@ class Test extends BaseTest protected function setUpSte(STECore $ste): void { - $names = array( + $names = [ "foo", "ab_cd", "foo123baz", "x0123", - ); + ]; foreach ($names as $name) { $ste->register_tag( -- cgit v1.2.3-54-g00ecf