mirror of
https://github.com/werkraum-media/thuecat.git
synced 2024-11-04 20:36:13 +01:00
73 lines
3.4 KiB
PHP
73 lines
3.4 KiB
PHP
<?php
|
|
$finder = (new PhpCsFixer\Finder())
|
|
->ignoreVCSIgnored(true)
|
|
->in(realpath(__DIR__))
|
|
;
|
|
|
|
return (new \PhpCsFixer\Config())
|
|
->setRiskyAllowed(true)
|
|
->setRules([
|
|
'@DoctrineAnnotation' => true,
|
|
'@PSR2' => true,
|
|
'array_indentation' => true,
|
|
'array_syntax' => ['syntax' => 'short'],
|
|
'attribute_empty_parentheses' => true,
|
|
'blank_line_after_opening_tag' => true,
|
|
'braces' => ['allow_single_line_closure' => true],
|
|
'cast_spaces' => ['space' => 'none'],
|
|
'compact_nullable_typehint' => true,
|
|
'concat_space' => ['spacing' => 'one'],
|
|
'declare_equal_normalize' => ['space' => 'none'],
|
|
'declare_strict_types' => true,
|
|
'dir_constant' => true,
|
|
'fully_qualified_strict_types' => false,
|
|
'function_to_constant' => ['functions' => ['get_called_class', 'get_class', 'get_class_this', 'php_sapi_name', 'phpversion', 'pi']],
|
|
'function_typehint_space' => true,
|
|
'global_namespace_import' => ['import_classes' => true, 'import_constants' => true, 'import_functions' => true],
|
|
'lowercase_cast' => true,
|
|
'method_argument_space' => ['on_multiline' => 'ensure_fully_multiline'],
|
|
'modernize_strpos' => true,
|
|
'modernize_types_casting' => true,
|
|
'multiline_whitespace_before_semicolons' => ['strategy' => 'new_line_for_chained_calls'],
|
|
'native_function_casing' => true,
|
|
'new_with_braces' => true,
|
|
'no_alias_functions' => true,
|
|
'no_blank_lines_after_phpdoc' => true,
|
|
'no_empty_phpdoc' => true,
|
|
'no_empty_statement' => true,
|
|
'no_extra_blank_lines' => true,
|
|
'no_leading_import_slash' => true,
|
|
'no_leading_namespace_whitespace' => true,
|
|
'no_multiline_whitespace_around_double_arrow' => true,
|
|
'no_null_property_initialization' => true,
|
|
'no_short_bool_cast' => true,
|
|
'no_singleline_whitespace_before_semicolons' => true,
|
|
'no_superfluous_elseif' => true,
|
|
'no_trailing_comma_in_singleline_array' => true,
|
|
'no_unneeded_control_parentheses' => true,
|
|
'no_unneeded_import_alias' => true,
|
|
'no_unused_imports' => true,
|
|
'no_useless_else' => true,
|
|
'no_whitespace_in_blank_line' => true,
|
|
'ordered_imports' => true,
|
|
'php_unit_construct' => ['assertions' => ['assertEquals', 'assertSame', 'assertNotEquals', 'assertNotSame']],
|
|
'php_unit_mock_short_will_return' => true,
|
|
'php_unit_test_case_static_method_calls' => ['call_type' => 'self'],
|
|
'phpdoc_no_access' => true,
|
|
'phpdoc_no_package' => true,
|
|
'phpdoc_order' => ['order' => ['test', 'dataProvider', 'param', 'throws', 'return']],
|
|
'phpdoc_scalar' => true,
|
|
'phpdoc_separation' => ['groups' => [['Extbase\\*']]],
|
|
'phpdoc_trim' => true,
|
|
'phpdoc_types' => true,
|
|
'phpdoc_types_order' => ['null_adjustment' => 'always_last', 'sort_algorithm' => 'none'],
|
|
'return_type_declaration' => ['space_before' => 'none'],
|
|
'single_line_comment_style' => ['comment_types' => ['hash']],
|
|
'single_quote' => true,
|
|
'single_trait_insert_per_statement' => true,
|
|
'trailing_comma_in_multiline' => ['elements' => ['arrays']],
|
|
'whitespace_after_comma_in_array' => true,
|
|
'yoda_style' => ['equal' => false, 'identical' => false, 'less_and_greater' => false],
|
|
])
|
|
->setFinder($finder)
|
|
;
|