exclude('vendor') ->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 Symfony\CS\Config\Config::create() ->level(Symfony\CS\FixerInterface::PSR2_LEVEL) ->fixers([ 'remove_leading_slash_use', 'single_array_no_trailing_comma', 'spaces_before_semicolon', 'unused_use', 'concat_with_spaces', 'whitespacy_lines', 'ordered_use', 'single_quote', 'duplicate_semicolon', 'extra_empty_lines', 'phpdoc_no_package', 'phpdoc_scalar', 'no_empty_lines_after_phpdocs' ]) ->finder($finder);