Skip to content

Commit

Permalink
chore: omit default values for suffix in phpunit.xml (#498)
Browse files Browse the repository at this point in the history
  • Loading branch information
browner12 committed Jan 15, 2024
1 parent 394765e commit f846934
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions phpunit.xml.dist
Expand Up @@ -6,16 +6,16 @@
>
<testsuites>
<testsuite name="Tests">
<directory suffix="Test.php">./tests</directory>
<directory>./tests</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory suffix=".php">./src</directory>
<directory>./src</directory>
</include>
<exclude>
<directory suffix=".php">./src/Components/Database/stubs</directory>
<directory suffix=".php">./src/Components/Log/stubs</directory>
<directory>./src/Components/Database/stubs</directory>
<directory>./src/Components/Log/stubs</directory>
</exclude>
</source>
</phpunit>

0 comments on commit f846934

Please sign in to comment.