Yaffs site version 1.1
[yaffs-website] / vendor / phpunit / phpunit / .php_cs
1 <?php
2 $finder = Symfony\CS\Finder\DefaultFinder::create()
3     ->files()
4     ->in('build')
5     ->in('src')
6     ->in('tests')
7     ->name('*.php')
8     ->name('*.phpt');
9
10 return Symfony\CS\Config\Config::create()
11     ->level(\Symfony\CS\FixerInterface::NONE_LEVEL)
12     ->fixers(
13         array(
14             'align_double_arrow',
15             'align_equals',
16             'braces',
17             'concat_with_spaces',
18             'duplicate_semicolon',
19             'elseif',
20             'empty_return',
21             'encoding',
22             'eof_ending',
23             'extra_empty_lines',
24             'function_call_space',
25             'function_declaration',
26             'indentation',
27             'join_function',
28             'line_after_namespace',
29             'linefeed',
30             'list_commas',
31             'long_array_syntax',
32             'lowercase_constants',
33             'lowercase_keywords',
34             'method_argument_space',
35             'multiple_use',
36             'namespace_no_leading_whitespace',
37             'no_blank_lines_after_class_opening',
38             'no_empty_lines_after_phpdocs',
39             'parenthesis',
40             'php_closing_tag',
41             'phpdoc_indent',
42             'phpdoc_no_access',
43             'phpdoc_no_empty_return',
44             'phpdoc_no_package',
45             'phpdoc_params',
46             'phpdoc_scalar',
47             'phpdoc_separation',
48             'phpdoc_to_comment',
49             'phpdoc_trim',
50             'phpdoc_types',
51             'phpdoc_var_without_name',
52             'remove_lines_between_uses',
53             'return',
54             'self_accessor',
55             'short_tag',
56             'single_line_after_imports',
57             'single_quote',
58             'spaces_before_semicolon',
59             'spaces_cast',
60             'ternary_spaces',
61             'trailing_spaces',
62             'trim_array_spaces',
63             'unused_use',
64             'visibility',
65             'whitespacy_lines'
66         )
67     )
68     ->finder($finder);
69