Add coding standards rule to error on long array syntax

This commit is contained in:
Zach Borboa
2023-06-25 16:02:46 -07:00
parent ed071d5670
commit 50320065ce
+1
View File
@@ -6,6 +6,7 @@ $finder = PhpCsFixer\Finder::create()
$config = new PhpCsFixer\Config();
$config
->setRules([
'array_syntax' => ['syntax' => 'short'],
'no_unused_imports' => true,
])
->setFinder($finder);