Merge pull request #795 from zachborboa/master

Add coding standards rule to error on long array syntax
This commit is contained in:
Zach Borboa
2023-06-26 06:07:57 -07:00
committed by GitHub
+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);