Merge pull request #781 from TomA-R/php_8_4_dep_test_bootstrap

Fix constant E_STRICT deprecation warning when running tests
This commit is contained in:
Denis Sokolov
2025-08-04 21:43:47 +02:00
committed by GitHub
+2 -2
View File
@@ -3,8 +3,8 @@
* Whoops - php errors for cool kids
* @author Filipe Dobreira <http://github.com/filp>
*
* Bootstraper for PHPUnit tests.
* Bootstrapper for PHPUnit tests.
*/
error_reporting(E_ALL | E_STRICT);
error_reporting(E_ALL);
require_once __DIR__ . '/../vendor/autoload.php';