Skip to content

Commit d9083d9

Browse files
authored
Merge pull request #66 from jrushlow/ci/cs-fixer-test-suite
add test suite to cs fixer
2 parents ee7bcaa + 54b6d73 commit d9083d9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.php_cs.dist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<?php
22

3-
if (!file_exists(__DIR__.'/src')) {
3+
if (!file_exists(__DIR__.'/src') || !file_exists(__DIR__.'/tests')) {
44
exit(0);
55
}
66

77
$finder = PhpCsFixer\Finder::create()
8-
->in(__DIR__.'/src')
8+
->in([__DIR__.'/src', __DIR__.'/tests'])
99
;
1010

1111
return PhpCsFixer\Config::create()

0 commit comments

Comments
 (0)