From e07a41c9b293c9a42b7d5236f9e3b91e0458cc6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20Franco?= Date: Mon, 10 Aug 2026 11:19:29 +0200 Subject: [PATCH] fix(cs): exclude auto-generated demo reference.php from PHP-CS-Fixer Symfony demo config/reference.php is regenerated without declare(strict_types=1), which made PR-only cs-check fail while push CI skips the job. Co-authored-by: Cursor --- .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 44610ba..2a63b80 100644 --- a/.php-cs-fixer.dist.php +++ b/.php-cs-fixer.dist.php @@ -115,4 +115,5 @@ (new Finder()) ->in(__DIR__) ->exclude(['vendor', 'var', 'coverage', '.phpunit.cache']) + ->notName('reference.php') );