We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d338a8d commit 217753fCopy full SHA for 217753f
phpunit.xml.dist
@@ -4,6 +4,7 @@
4
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
6
backupGlobals="false"
7
+ failOnDeprecation="true"
8
colors="true"
9
bootstrap="tests/bootstrap.php"
10
>
@@ -20,11 +21,16 @@
20
21
</testsuite>
22
</testsuites>
23
- <source>
24
+ <source ignoreSuppressionOfDeprecations="true"
25
+ ignoreIndirectDeprecations="true"
26
+ >
27
<include>
28
<directory suffix=".php">src</directory>
29
</include>
30
31
+ <deprecationTrigger>
32
+ <function>trigger_deprecation</function>
33
+ </deprecationTrigger>
34
</source>
35
36
<extensions>
0 commit comments