We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f714211 commit 564b61fCopy full SHA for 564b61f
phpunit.xml.dist
@@ -3,6 +3,7 @@
3
<!-- https://docs.phpunit.de/en/11.5/configuration.html -->
4
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
6
+ failOnDeprecation="true"
7
failOnNotice="true"
8
failOnWarning="true"
9
colors="true"
@@ -21,11 +22,16 @@
21
22
</testsuite>
23
</testsuites>
24
- <source>
25
+ <source ignoreSuppressionOfDeprecations="true"
26
+ ignoreIndirectDeprecations="true"
27
+ >
28
<include>
29
<directory suffix=".php">src</directory>
30
</include>
31
32
+ <deprecationTrigger>
33
+ <function>trigger_deprecation</function>
34
+ </deprecationTrigger>
35
</source>
36
37
<extensions>
0 commit comments