From ed916a4c42cd7c059daf32920718992a29c3950c Mon Sep 17 00:00:00 2001 From: Thomas Calvet Date: Tue, 6 Aug 2019 12:43:51 +0200 Subject: [PATCH] Ignore ErrorHandler DebugClassLoaderTest class in PHP-CS-Fixer config --- .php_cs.dist | 1 + 1 file changed, 1 insertion(+) diff --git a/.php_cs.dist b/.php_cs.dist index 35ef4ae8cb..7396edf9c6 100644 --- a/.php_cs.dist +++ b/.php_cs.dist @@ -52,6 +52,7 @@ return PhpCsFixer\Config::create() ->notPath('Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Resources/views/translation.html.php') // explicit trigger_error tests ->notPath('Symfony/Component/Debug/Tests/DebugClassLoaderTest.php') + ->notPath('Symfony/Component/ErrorHandler/Tests/DebugClassLoaderTest.php') // invalid annotations on purpose ->notPath('Symfony/Component/DependencyInjection/Tests/Fixtures/includes/autowiring_classes.php') )