Squelch deprecation errors when running PHPUnit

These errors occur on UuidInterface, and the solution is to add
__unserialize() and __serialize() to the interface, but this cannot take
place until the next major version bump.
This commit is contained in:
Ben Ramsey
2022-08-05 14:47:05 -05:00
parent f1891183f9
commit edb10483fb
+5
View File
@@ -18,4 +18,9 @@
</include>
</coverage>
<php>
<!-- E_ALL & ~E_DEPRECATED -->
<ini name="error_reporting" value="24575"/>
</php>
</phpunit>