From 3e14a6e84df0f7de54751f5ce152f4a4310bbc49 Mon Sep 17 00:00:00 2001 From: fancyweb Date: Mon, 24 Dec 2018 12:00:56 +0100 Subject: [PATCH] fix(php-cs-fixer): remove duplicate key from config --- .php_cs.dist | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.php_cs.dist b/.php_cs.dist index 7562b522..4b1cad27 100644 --- a/.php_cs.dist +++ b/.php_cs.dist @@ -28,7 +28,7 @@ return PhpCsFixer\Config::create() 'location' => 'after_open', ], 'modernize_types_casting' => true, - 'native_function_invocation' => true, + 'native_function_invocation' => ['include' => ['@compiler_optimized'], 'scope' => 'namespaced'], 'no_extra_consecutive_blank_lines' => [ 'break', 'continue', @@ -52,7 +52,6 @@ return PhpCsFixer\Config::create() 'strict_comparison' => true, 'strict_param' => true, 'ternary_to_null_coalescing' => true, - 'native_function_invocation' => ['include' => ['@compiler_optimized'], 'scope' => 'namespaced'], ]) ->setFinder($finder) ;