summaryrefslogtreecommitdiff
path: root/.php_cs.dist
diff options
context:
space:
mode:
authorLaria Carolin Chabowski <laria@laria.me>2020-09-13 21:44:30 +0200
committerLaria Carolin Chabowski <laria@laria.me>2020-09-13 21:44:30 +0200
commit11932a471b4ef10faf76b6fcfe30a35f946eb7ab (patch)
treecde92c5eceef8991033fe7773ab60da51e289af4 /.php_cs.dist
parentd7d74d0a714f29515da85078cc826ba49d2913b9 (diff)
downloadste-11932a471b4ef10faf76b6fcfe30a35f946eb7ab.tar.gz
ste-11932a471b4ef10faf76b6fcfe30a35f946eb7ab.tar.bz2
ste-11932a471b4ef10faf76b6fcfe30a35f946eb7ab.zip
Use short array syntax
We can use it now that we switched to PHP 7.3
Diffstat (limited to '.php_cs.dist')
-rw-r--r--.php_cs.dist1
1 files changed, 1 insertions, 0 deletions
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)
;