From ba8320726494d8c84e6e47dd93b0c42c5f5b921f Mon Sep 17 00:00:00 2001 From: Dominique FOURNIER Date: Thu, 13 Apr 2023 21:52:52 +0200 Subject: [PATCH] Update .php-cs-fixer.dist.php to add space before and after . operator --- .php-cs-fixer.dist.php | 1 + 1 file changed, 1 insertion(+) diff --git a/.php-cs-fixer.dist.php b/.php-cs-fixer.dist.php index 031b40e..0027114 100644 --- a/.php-cs-fixer.dist.php +++ b/.php-cs-fixer.dist.php @@ -11,6 +11,7 @@ return $config->setRules([ 'align_multiline_comment' => ['comment_type' => 'phpdocs_like'], //'strict_param' => true, 'array_syntax' => ['syntax' => 'short'], + 'concat_space' => ['spacing' => 'one'], ]) ->setFinder($finder) ;