1
0
mirror of https://github.com/halaxa/json-machine.git synced 2025-01-18 13:33:30 +01:00
json-machine/.php-cs-fixer.dist.php
2021-11-23 12:42:13 +01:00

15 lines
261 B
PHP

<?php
$finder = PhpCsFixer\Finder::create()
->in(__DIR__)
;
$config = new PhpCsFixer\Config();
return $config->setRules([
'@PSR12' => true,
'array_syntax' => ['syntax' => 'short'],
'visibility_required' => false,
])
->setFinder($finder)
;