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