This commit is contained in:
2022-10-23 01:39:27 +02:00
parent 8c17aab483
commit 1929b84685
4130 changed files with 479334 additions and 0 deletions

20
vendor/valga/fbns-react/.php_cs vendored Executable file
View File

@@ -0,0 +1,20 @@
<?php
return \PhpCsFixer\Config::create()
->setFinder(
\PhpCsFixer\Finder::create()
->in('src')
)
->setRules([
'@Symfony' => true,
// Override @Symfony rules
'pre_increment' => false,
'blank_line_before_statement' => ['statements' => ['return']],
'phpdoc_align' => ['tags' => ['param', 'throws']],
'phpdoc_annotation_without_dot' => false,
// Custom rules
'phpdoc_add_missing_param_annotation' => ['only_untyped' => false],
'ordered_imports' => true,
'phpdoc_order' => true,
'array_syntax' => ['syntax' => 'short'],
]);