1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <?php
- $finder = PhpCsFixer\Finder::create()
- ->in([__DIR__ . '/lib', __DIR__ . '/tests']);
- return PhpCsFixer\Config::create()
- ->setRules([
- '@PSR2' => true,
- 'array_syntax' => ['syntax' => 'short'],
- 'binary_operator_spaces' => true,
- 'blank_line_before_return' => true,
- 'cast_spaces' => true,
- 'concat_space' => ['spacing' => 'one'],
- 'function_typehint_space' => true,
- 'general_phpdoc_annotation_remove' => ['author'],
- 'linebreak_after_opening_tag' => true,
- 'lowercase_cast' => true,
- 'mb_str_functions' => true,
- 'method_separation' => true,
- 'native_function_casing' => true,
- 'new_with_braces' => true,
- 'no_alias_functions' => true,
- 'no_blank_lines_after_class_opening' => true,
- 'no_blank_lines_after_phpdoc' => true,
- 'no_empty_comment' => true,
- 'no_empty_phpdoc' => true,
- 'no_empty_statement' => true,
- 'no_extra_consecutive_blank_lines' => [
- 'use',
- 'break',
- 'continue',
- 'extra',
- 'return',
- 'throw',
- 'useTrait',
- 'curly_brace_block',
- 'parenthesis_brace_block',
- 'square_brace_block',
- ],
- 'no_leading_import_slash' => true,
- 'no_leading_namespace_whitespace' => true,
- 'no_singleline_whitespace_before_semicolons' => true,
- 'no_trailing_comma_in_singleline_array' => true,
- 'no_unreachable_default_argument_value' => true,
- 'no_unused_imports' => true,
- 'no_useless_else' => true,
- 'no_useless_return' => true,
- 'no_whitespace_in_blank_line' => true,
- 'object_operator_without_whitespace' => true,
- 'ordered_class_elements' => true,
- 'ordered_imports' => true,
- 'php_unit_construct' => true,
- 'php_unit_dedicate_assert' => true,
- 'php_unit_expectation' => true,
- 'php_unit_mock' => true,
- 'php_unit_no_expectation_annotation' => true,
- 'phpdoc_add_missing_param_annotation' => true,
- 'phpdoc_indent' => true,
- 'phpdoc_no_access' => true,
- 'phpdoc_no_empty_return' => true,
- 'phpdoc_no_package' => true,
- 'phpdoc_order' => true,
- 'phpdoc_scalar' => true,
- 'phpdoc_single_line_var_spacing' => true,
- 'phpdoc_trim' => true,
- 'phpdoc_types' => true,
- 'psr4' => true,
- 'self_accessor' => true,
- 'short_scalar_cast' => true,
- 'single_blank_line_before_namespace' => true,
- 'single_quote' => true,
- 'space_after_semicolon' => true,
- 'standardize_not_equals' => true,
- 'ternary_operator_spaces' => true,
- 'trailing_comma_in_multiline_array' => true,
- 'trim_array_spaces' => true,
- 'unary_operator_spaces' => true,
- 'visibility_required' => true,
- 'whitespace_after_comma_in_array' => true,
- 'yoda_style' => false,
- ])
- ->setRiskyAllowed(true)
- ->setFinder($finder);
|