Skip to content

Commit 61ea0b8

Browse files
authored
Merge pull request #157 from fancyweb/remove-duplicate-key-from-php-cs-fixer-config
fix(php-cs-fixer): remove duplicate key from config
2 parents 62c91ab + 44c58d1 commit 61ea0b8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.php_cs.dist

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ return PhpCsFixer\Config::create()
2828
'location' => 'after_open',
2929
],
3030
'modernize_types_casting' => true,
31-
'native_function_invocation' => true,
31+
'native_function_invocation' => ['include' => ['@compiler_optimized'], 'scope' => 'namespaced'],
3232
'no_extra_consecutive_blank_lines' => [
3333
'break',
3434
'continue',
@@ -52,7 +52,6 @@ return PhpCsFixer\Config::create()
5252
'strict_comparison' => true,
5353
'strict_param' => true,
5454
'ternary_to_null_coalescing' => true,
55-
'native_function_invocation' => ['include' => ['@compiler_optimized'], 'scope' => 'namespaced'],
5655
])
5756
->setFinder($finder)
5857
;

0 commit comments

Comments
 (0)