Skip to content

Commit

Permalink
Omit default values for suffix in phpunit.xml
Browse files Browse the repository at this point in the history
The values specified for `suffix` are their respective defaults and can be omitted.

Follows from laravel/laravel#6210
  • Loading branch information
browner12 committed Jan 15, 2024
1 parent 394765e commit 2cceca0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
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 2cceca0

Please sign in to comment.