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 6f9b0a5 commit b5260afCopy full SHA for b5260af
phpunit.xml.dist
@@ -1,6 +1,6 @@
1
<?xml version="1.0" encoding="UTF-8"?>
2
3
-<phpunit bootstrap="vendor/autoload.php" colors="true">
+<phpunit bootstrap="tests/bootstrap.php" colors="true">
4
<testsuites>
5
<testsuite name="Monolog Test Suite">
6
<directory>tests/Monolog/</directory>
tests/bootstrap.php
@@ -0,0 +1,9 @@
+<?php
+
+if (PHP_VERSION_ID >= 70400) {
+ error_reporting(E_ALL & ~E_DEPRECATED);
+} else {
+ error_reporting(E_ALL);
7
+}
8
9
+include __DIR__.'/../vendor/autoload.php';
0 commit comments