Remove 'void_return' rule in php-cs-fixer

This commit is contained in:
Adrien Loison 2017-10-21 19:09:18 +02:00
parent 84083985dc
commit 06c53995db

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],
]); ]);