From a09817864b0d05f7aadb32211e962b66045e7ebb Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Tue, 14 Dec 2021 22:50:43 +0000 Subject: [PATCH] php-cs-fixer: add return_type_declaration space_before --- .php-cs-fixer.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.php-cs-fixer.php b/.php-cs-fixer.php index 590f6ebd8..aa00fc033 100644 --- a/.php-cs-fixer.php +++ b/.php-cs-fixer.php @@ -69,6 +69,9 @@ return (new PhpCsFixer\Config) ], 'phpdoc_trim' => true, 'phpdoc_trim_consecutive_blank_line_separation' => true, + 'return_type_declaration' => [ + 'space_before' => 'one' + ], 'single_import_per_statement' => true, 'strict_param' => true, ])