Omit default values for suffix in phpunit.xml (#6210)

The values specified for `suffix` are their respective defaults and can be omitted.
This commit is contained in:
Benedikt Franke
2023-06-30 17:16:51 +02:00
committed by GitHub
parent 3ac233abb2
commit 6c1a39b5b3

View File

@@ -6,15 +6,15 @@
> >
<testsuites> <testsuites>
<testsuite name="Unit"> <testsuite name="Unit">
<directory suffix="Test.php">./tests/Unit</directory> <directory>./tests/Unit</directory>
</testsuite> </testsuite>
<testsuite name="Feature"> <testsuite name="Feature">
<directory suffix="Test.php">./tests/Feature</directory> <directory>./tests/Feature</directory>
</testsuite> </testsuite>
</testsuites> </testsuites>
<source> <source>
<include> <include>
<directory suffix=".php">./app</directory> <directory>./app</directory>
</include> </include>
</source> </source>
<php> <php>