Update .php_cs.dist

Remove "void_return" rule
This commit is contained in:
Adrien Loison 2017-11-04 16:43:36 +01:00 committed by GitHub
parent c74c0d9127
commit fec27e9056
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -42,7 +42,6 @@ $config = PhpCsFixer\Config::create()
'simplified_null_return' => false, 'simplified_null_return' => false,
'single_line_comment_style' => ['comment_types' => ['hash']], 'single_line_comment_style' => ['comment_types' => ['hash']],
'strict_comparison' => true, 'strict_comparison' => true,
'void_return' => true,
'yoda_style' => ['equal' => false, 'identical' => false], 'yoda_style' => ['equal' => false, 'identical' => false],
]); ]);