mirror of
https://github.com/filp/whoops.git
synced 2026-08-25 17:47:30 +00:00
18d46a7de3
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.
11 lines
216 B
PHP
11 lines
216 B
PHP
<?php
|
|
/**
|
|
* Whoops - php errors for cool kids
|
|
* @author Filipe Dobreira <http://github.com/filp>
|
|
*
|
|
* Bootstrapper for PHPUnit tests.
|
|
*/
|
|
error_reporting(E_ALL);
|
|
|
|
require_once __DIR__ . '/../vendor/autoload.php';
|