in(__DIR__ . '/../'); // Return a Code Sniffing configuration using // all sniffers needed for PSR-2 // and additionally: // - Remove leading slashes in use clauses. // - PHP single-line arrays should not have trailing comma. // - Single-line whitespace before closing semicolon are prohibited. // - Remove unused use statements in the PHP source code // - Ensure Concatenation to have at least one whitespace around // - Remove trailing whitespace at the end of blank lines. return PhpCsFixer\Config::create() ->setRiskyAllowed(true) ->setRules([ '@PSR2' => true, 'no_leading_import_slash' => true, 'no_trailing_comma_in_singleline_array' => true, 'no_singleline_whitespace_before_semicolons' => true, 'no_unused_imports' => true, 'concat_space' => ['spacing' => 'one'], 'no_whitespace_in_blank_line' => true, 'ordered_imports' => true, 'single_quote' => true, 'no_empty_statement' => true, 'no_extra_consecutive_blank_lines' => true, 'phpdoc_no_package' => true, 'phpdoc_scalar' => true, 'no_blank_lines_after_phpdoc' => true, 'array_syntax' => ['syntax' => 'short'], 'whitespace_after_comma_in_array' => true, 'function_typehint_space' => true, 'hash_to_slash_comment' => true, 'no_alias_functions' => true, 'lowercase_cast' => true, 'no_leading_namespace_whitespace' => true, 'native_function_casing' => true, 'self_accessor' => true, 'no_short_bool_cast' => true, 'no_unneeded_control_parentheses' => true ]) ->setFinder($finder);