Skip to content

Commit

Permalink
Document why files are excluded
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Sep 15, 2024
1 parent fa498d8 commit d84eaea
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .php-cs-fixer.dist.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@
->in(__DIR__ . '/tests/_files')
->in(__DIR__ . '/tests/end-to-end')
->in(__DIR__ . '/tests/unit')
// DeprecatedPhpFeatureTest.php must not use declare(strict_types=1);
->notName('DeprecatedPhpFeatureTest.php')
// don't mangle whitespaces in this test, which are required for the error reproduce
// Issue5795Test.php contains required whitespace that would be cleaned up
->notName('Issue5795Test.php')
->notName('*.phpt');

Expand Down

0 comments on commit d84eaea

Please sign in to comment.