mirror of
https://github.com/j0k3r/php-readability.git
synced 2026-09-27 14:36:23 +00:00
Once we bump minimum PHP version, we will get newer PHP-CS-Fixer, which will try to apply this cleanups. (partially cherry picked from commit648d8c605b) Though avoid disabling `modernize_strpos` since it was only introduced in PHP-CS-Fixer 3.2.0: https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/commit/2ca22a27c4ffb8cc46f20e7110b1dfcbb0c8c47c Also had to disable `visibility_required` for constants since those require PHP ≥ 7.1: https://cs.symfony.com/doc/rules/class_notation/visibility_required.html And remove type hint from `grabArticle` since implicitly nullable types were deprecated in PHP 8.4: https://wiki.php.net/rfc/deprecate-implicitly-nullable-types But we cannot use explicitly nullable types, which require PHP ≥ 7.1: https://wiki.php.net/rfc/nullable_types Also switch code blocks to Markdown syntax to work around `phpdoc_separation`, ApiGen uses Markdown these days anyway. (partially cherry picked from commit9ed89bde92)
36 lines
1.3 KiB
PHP
36 lines
1.3 KiB
PHP
<?php
|
|
|
|
$finder = (new PhpCsFixer\Finder())
|
|
->in(__DIR__)
|
|
->exclude(['vendor', 'var', 'web'])
|
|
;
|
|
|
|
return (new PhpCsFixer\Config())
|
|
->setUsingCache(true)
|
|
->setRiskyAllowed(true)
|
|
->setRules([
|
|
'@Symfony' => true,
|
|
'@Symfony:risky' => true,
|
|
'array_syntax' => ['syntax' => 'short'],
|
|
'combine_consecutive_unsets' => true,
|
|
'heredoc_to_nowdoc' => true,
|
|
'no_extra_blank_lines' => ['tokens' => ['break', 'continue', 'extra', 'return', 'throw', 'use', 'parenthesis_brace_block', 'square_brace_block', 'curly_brace_block']],
|
|
'no_unreachable_default_argument_value' => true,
|
|
'no_useless_else' => true,
|
|
'no_useless_return' => true,
|
|
'ordered_class_elements' => true,
|
|
'ordered_imports' => true,
|
|
'php_unit_strict' => false,
|
|
'phpdoc_order' => true,
|
|
// 'psr4' => true,
|
|
'strict_comparison' => true,
|
|
'strict_param' => true,
|
|
'concat_space' => ['spacing' => 'one'],
|
|
// Pulled in by @Symfony, we cannot add property types until we bump PHP to ≥ 7.4
|
|
'no_null_property_initialization' => false,
|
|
// Pulled in by @Symfony with `const` but const visibility requires PHP ≥ 7.1
|
|
'visibility_required' => ['elements' => ['method', 'property']],
|
|
])
|
|
->setFinder($finder)
|
|
;
|