exclude('vendor') ->in(__DIR__) ; return (new PhpCsFixer\Config()) ->setRules([ '@PSR2' => true, 'array_syntax' => ['syntax' => 'short'], 'braces_position' => [ 'functions_opening_brace' => 'same_line', 'anonymous_functions_opening_brace' => 'same_line', 'classes_opening_brace' => 'same_line', ], 'binary_operator_spaces' => ['operators' => ['=>' => 'align']], ]) ->setIndent("\t") ->setFinder($finder) ;