Skip to content

Commit

Permalink
[PhpCsFixer] Fix paths (#856)
Browse files Browse the repository at this point in the history
* [PhpCsFixer] Fix paths

* [PhpCsFixer] Fix paths

* [PhpCsFixer] Fix paths
  • Loading branch information
blankse committed Apr 23, 2024
1 parent 17c666a commit 0317eb4
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions .php-cs-fixer.dist.php
Expand Up @@ -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()
Expand Down

0 comments on commit 0317eb4

Please sign in to comment.