From 23d348c4e18765c3c368fb5c114cffe8bcc9fb20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20Franco?= Date: Mon, 10 Aug 2026 11:20:26 +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. --- .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 ba5ab47..1ab585c 100644 --- a/.php-cs-fixer.dist.php +++ b/.php-cs-fixer.dist.php @@ -97,6 +97,7 @@ (new Finder()) ->in(__DIR__) ->exclude(['vendor', 'var', 'coverage', '.phpunit.cache']) + ->notName('reference.php') ->notPath('demo/symfony8/config/reference.php') ->notName('composer.json') );