From 80678bf08eab45a89a98b5e0059f7bf6cb02100c Mon Sep 17 00:00:00 2001 From: Oskar Stark Date: Wed, 10 Dec 2025 21:21:34 +0100 Subject: [PATCH] [CS] Exclude demo/config/reference.php from PHP CS Fixer --- .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 b6d2355f0..4cbd46fd6 100644 --- a/.php-cs-fixer.dist.php +++ b/.php-cs-fixer.dist.php @@ -65,5 +65,6 @@ ->in(__DIR__.'/{.phpstan,demo,examples,fixtures,src}') ->append([__FILE__]) ->exclude('var') + ->notPath('demo/config/reference.php') ) ;