From 1a395a51c914631b58fbbee30c7f829f866c3583 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Thu, 19 Aug 2021 15:26:45 +0100 Subject: [PATCH] Fixing function import inconsistencies since php-cs-fixer 3.0 migration --- .php-cs-fixer.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.php-cs-fixer.php b/.php-cs-fixer.php index 3b7f399af..373c8fc80 100644 --- a/.php-cs-fixer.php +++ b/.php-cs-fixer.php @@ -41,7 +41,8 @@ return (new PhpCsFixer\Config) ], 'indentation_type' => true, 'native_function_invocation' => [ - 'scope' => 'namespaced' + 'scope' => 'namespaced', + 'include' => ['@all'], ], 'no_closing_tag' => true, 'no_empty_phpdoc' => true,