From 8940d593df945f660274b87657b214b6db2737c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Thu, 28 Apr 2022 11:54:09 +0200 Subject: [PATCH] Fix: Order --- .php-cs-fixer.dist.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.php-cs-fixer.dist.php b/.php-cs-fixer.dist.php index 4cd3605..16d7748 100644 --- a/.php-cs-fixer.dist.php +++ b/.php-cs-fixer.dist.php @@ -23,6 +23,7 @@ 'braces' => [ 'allow_single_line_closure' => true, ], + 'native_function_invocation' => false, 'no_extra_blank_lines' => [ 'tokens' => [ 'break', @@ -39,6 +40,7 @@ 'no_superfluous_phpdoc_tags' => true, 'no_useless_else' => true, 'no_useless_return' => true, + 'non_printable_character' => false, 'ordered_imports' => [ 'imports_order' => [ 'class', @@ -51,8 +53,6 @@ 'strict_comparison' => true, 'strict_param' => true, 'ternary_to_null_coalescing' => true, - 'native_function_invocation' => false, - 'non_printable_character' => false, ]) ->setFinder($finder) ;