From 0317eb41d76884d9abb60248b7ecf60b6b35d290 Mon Sep 17 00:00:00 2001 From: Sebastian Blank Date: Tue, 23 Apr 2024 14:30:21 +0200 Subject: [PATCH] [PhpCsFixer] Fix paths (#856) * [PhpCsFixer] Fix paths * [PhpCsFixer] Fix paths * [PhpCsFixer] Fix paths --- .php-cs-fixer.dist.php | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/.php-cs-fixer.dist.php b/.php-cs-fixer.dist.php index b14b6d21..d0e1b8d2 100644 --- a/.php-cs-fixer.dist.php +++ b/.php-cs-fixer.dist.php @@ -2,20 +2,14 @@ $finder = PhpCsFixer\Finder::create() ->in([ - __DIR__ . '/bundles', - __DIR__ . '/config', - __DIR__ . '/lib', - __DIR__ . '/models', - __DIR__ . '/tests' + __DIR__ . '/src', + __DIR__ . '/tests', ]) ->exclude([ __DIR__ . '/tests/_output', - __DIR__ . '/tests/Support/_generated', + __DIR__ . '/tests/_support/_generated', ]) - - // do not fix views - ->notName('*.html.php') ; // do not enable self_accessor as it breaks pimcore models relying on get_called_class()