Fix constant E_STRICT deprecation warning when running tests

E_STRICT was deprecated in PHP 8.4. It's used in tests/bootstrap.php, causing a deprecation warning to be emitted when running tests.
This commit is contained in:
Tom Arbesser-Rastburg
2025-08-04 21:23:57 +02:00
parent 5f9ed7ca9a
commit 18d46a7de3
+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';