Skip to content

Commit 54b6d73

Browse files
committed
add test suite to cs fixer
1 parent 2a82449 commit 54b6d73

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)