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 --- .php_cs.dist | 1 + 1 file changed, 1 insertion(+) (limited to '.php_cs.dist') diff --git a/.php_cs.dist b/.php_cs.dist index 314dfd7..9607d0e 100644 --- a/.php_cs.dist +++ b/.php_cs.dist @@ -7,6 +7,7 @@ return PhpCsFixer\Config::create() ->setRules([ '@PSR1' => true, '@PSR2' => true, + 'array_syntax' => ['syntax' => 'short'], ]) ->setFinder($finder) ; -- cgit v1.2.3-54-g00ecf