- php-fints Bibliothek von 3.7.0 auf 4.0.0 aktualisiert - Parser-Fix: Ignoriert zusätzliche Bank-Felder statt Exception - HKEKA Segmente implementiert (HIEKASv5, HKEKAv5, HIEKAv5) - HKKAA Segmente implementiert (HIKAASv1, HKKAAv1) - GetStatementFromArchive und GetElectronicStatement Actions HINWEIS: HKKAA/HKEKA funktionieren noch nicht mit VR Bank (Fehler "unerwarteter Aufbau wrt DE 2" - Kontoverbindungsformat) Normale Funktionalität (Transaktionsimport) ist nicht betroffen. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
30 lines
1.4 KiB
PHP
30 lines
1.4 KiB
PHP
<?php
|
|
|
|
// This is based on the `@Symfony` rule set documented in `vendor/friendsofphp/php-cs-fixer/doc/ruleSets/Symfony.rst`.
|
|
|
|
$finder = PhpCsFixer\Finder::create()
|
|
->in(__DIR__ . '/lib');
|
|
|
|
return (new PhpCsFixer\Config())
|
|
->setRules([
|
|
// We essentially use the Symfony style guide.
|
|
'@Symfony' => true,
|
|
|
|
// But then we have some exclusions, i.e. we disable some of the checks/rules from Symfony:
|
|
// Logic
|
|
'yoda_style' => false, // Allow both Yoda-style and regular comparisons.
|
|
|
|
// Whitespace
|
|
'blank_line_before_statement' => false, // Don't put blank lines before `return` statements.
|
|
'concat_space' => false, // Allow spaces around string concatenation operator.
|
|
'blank_line_after_opening_tag' => false, // Allow file-level @noinspection suppressions to live on the `<?php` line.
|
|
'single_line_throw' => false, // Allow `throw` statements to span multiple lines.
|
|
|
|
// phpDoc
|
|
'phpdoc_align' => false, // Don't add spaces within phpDoc just to make parameter names / descriptions align.
|
|
'phpdoc_annotation_without_dot' => false, // Allow terminating dot on @param and such.
|
|
'phpdoc_no_alias_tag' => false, // Allow @link in addition to @see.
|
|
'phpdoc_separation' => false, // Don't put blank line between @params, @throws and @return.
|
|
'phpdoc_summary' => false, // Don't force terminating dot on the first line.
|
|
])
|
|
->setFinder($finder);
|