From 142c8f067b5ce9758e4c22e4b4b5c9fe1d93c4a6 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Thu, 19 Aug 2021 15:25:20 +0100 Subject: [PATCH] fix CS in php-cs-fixer config unfortunately i can't seem to make it fix itself --- .php-cs-fixer.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.php-cs-fixer.php b/.php-cs-fixer.php index d2ea8dfa2..3b7f399af 100644 --- a/.php-cs-fixer.php +++ b/.php-cs-fixer.php @@ -41,13 +41,13 @@ return (new PhpCsFixer\Config) ], 'indentation_type' => true, 'native_function_invocation' => [ - 'scope' => 'namespaced' + 'scope' => 'namespaced' ], 'no_closing_tag' => true, 'no_empty_phpdoc' => true, 'no_extra_blank_lines' => true, 'no_superfluous_phpdoc_tags' => [ - 'allow_mixed' => true, + 'allow_mixed' => true, ], 'no_trailing_whitespace' => true, 'no_trailing_whitespace_in_comment' => true,