mirror of
https://github.com/symfony/recipes.git
synced 2026-09-11 23:26:27 +03:00
9 lines
145 B
PHP
9 lines
145 B
PHP
<?php
|
|
|
|
return PhpCsFixer\Config::create()
|
|
->setRules([
|
|
'@Symfony' => true,
|
|
'array_syntax' => ['syntax' => 'short'],
|
|
])
|
|
;
|