php-cs-fixer のルールに single_quote を追加 (#54)

This commit is contained in:
Eai 2019-01-18 20:00:47 +09:00 committed by shibafu
parent e5ea0528a8
commit 7745b68dae
1 changed files with 2 additions and 1 deletions

View File

@ -13,7 +13,8 @@ return \PhpCsFixer\Config::create()
'return_type_declaration' => true,
'new_with_braces' => true,
'no_empty_statement' => true,
'standardize_not_equals' => true
'standardize_not_equals' => true,
'single_quote' => true
])
->setFinder(
\PhpCsFixer\Finder::create()