Skip to content

Commit f63b08d

Browse files
committed
Add schema declaration to phpunit files. Remove parameters set to phpunit defaults.
1 parent 8735ca0 commit f63b08d

File tree

1 file changed

+14
-10
lines changed

1 file changed

+14
-10
lines changed

phpunit.xml.dist

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,19 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22

3-
<phpunit backupGlobals="false"
4-
backupStaticAttributes="false"
5-
colors="true"
6-
convertErrorsToExceptions="true"
7-
convertNoticesToExceptions="true"
8-
convertWarningsToExceptions="true"
9-
processIsolation="false"
10-
stopOnFailure="false"
11-
bootstrap="./vendor/autoload.php"
12-
>
3+
<phpunit
4+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/7.5/phpunit.xsd"
6+
backupGlobals="false"
7+
backupStaticAttributes="false"
8+
colors="true"
9+
convertDeprecationsToExceptions="false"
10+
convertErrorsToExceptions="true"
11+
convertNoticesToExceptions="true"
12+
convertWarningsToExceptions="true"
13+
processIsolation="false"
14+
stopOnFailure="false"
15+
bootstrap="./vendor/autoload.php"
16+
>
1317

1418
<testsuites>
1519
<testsuite name="Message Queue RdKafka Transport Test Suite">

0 commit comments

Comments
 (0)