From 2b5cb6028289c3fc15180b812106c7d369ae760c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Sat, 24 Sep 2022 14:27:11 +0200 Subject: [PATCH] Enhancement: Enable and configure native_function_invocation fixer --- .php-cs-fixer.dist.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.php-cs-fixer.dist.php b/.php-cs-fixer.dist.php index 1822b59d815..33c9cbd2fb5 100644 --- a/.php-cs-fixer.dist.php +++ b/.php-cs-fixer.dist.php @@ -126,7 +126,11 @@ 'multiline_whitespace_before_semicolons' => true, 'native_constant_invocation' => false, 'native_function_casing' => false, - 'native_function_invocation' => false, + 'native_function_invocation' => [ + 'include' => [ + '@internal', + ], + ], 'native_function_type_declaration_casing' => true, 'new_with_braces' => [ 'named_class' => false,