mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-09 22:17:26 +01:00
9 lines
145 B
Plaintext
9 lines
145 B
Plaintext
|
<?php
|
||
|
|
||
|
return PhpCsFixer\Config::create()
|
||
|
->setRules([
|
||
|
'@Symfony' => true,
|
||
|
'array_syntax' => ['syntax' => 'short'],
|
||
|
])
|
||
|
;
|