We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ee310f commit 95e33edCopy full SHA for 95e33ed
.php_cs.dist
@@ -6,18 +6,13 @@ if (!file_exists(__DIR__.'/src')) {
6
7
return PhpCsFixer\Config::create()
8
->setRules([
9
+ '@PHP71Migration' => true,
10
+ '@PHPUnit75Migration:risky' => true,
11
'@Symfony' => true,
12
'@Symfony:risky' => true,
- '@PHPUnit75Migration:risky' => true,
- 'php_unit_dedicate_assert' => ['target' => '5.6'],
13
- 'array_syntax' => ['syntax' => 'short'],
14
- 'fopen_flags' => false,
15
'protected_to_private' => false,
16
'native_constant_invocation' => true,
17
- 'combine_nested_dirname' => true,
18
'list_syntax' => ['syntax' => 'short'],
19
- 'visibility_required' => ['property', 'method', 'const'],
20
- 'ternary_to_null_coalescing' => true,
21
])
22
->setRiskyAllowed(true)
23
->setFinder(
0 commit comments