From 7f97dc1b8ab07036d53262ee52d757865a45294b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9C=D0=B0=D0=BA=D1=81=D0=B8=D0=BC=20=D0=A1=D0=BF=D0=B8?= =?UTF-8?q?=D1=80=D0=BA=D0=BE=D0=B2?= Date: Sun, 18 Jan 2026 22:39:09 +0400 Subject: [PATCH] Update the PHP CS Fixer configuration --- .php-cs-fixer.dist.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.php-cs-fixer.dist.php b/.php-cs-fixer.dist.php index e9cea90..92c8559 100644 --- a/.php-cs-fixer.dist.php +++ b/.php-cs-fixer.dist.php @@ -17,6 +17,12 @@ ->setRules([ '@PER-CS3.0' => true, 'no_unused_imports' => true, + 'no_extra_blank_lines' => [ + 'tokens' => [ + 'curly_brace_block', + 'extra', + ], + ], 'ordered_class_elements' => true, 'class_attributes_separation' => ['elements' => ['method' => 'one']], 'declare_strict_types' => true,