Skip to content

Commit

Permalink
Rename test folders in .php-cs-fixer.dist.php
Browse files Browse the repository at this point in the history
  • Loading branch information
marijnvanwezel committed Nov 26, 2022
1 parent af5178c commit 3249048
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .php-cs-fixer.dist.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,9 @@
$finder = Finder::create()
->files()
->in(__DIR__ . '/src')
->in(__DIR__ . '/tests/Unit')
->in(__DIR__ . '/tests/Integration')
->in(__DIR__ . '/tests/unit')
->in(__DIR__ . '/tests/integration')
->in(__DIR__ . '/tests/end-to-end')
->name('*.php');

$config = new Config();
Expand Down

0 comments on commit 3249048

Please sign in to comment.