Remove 'void_return' rule in php-cs-fixer

This commit is contained in:
Adrien Loison 2017-10-21 19:16:30 +02:00
parent 10fed91ac1
commit 4a2c6fe07a

View File

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