mirror of
https://github.com/filp/whoops.git
synced 2026-08-20 08:00:08 +00:00
11 lines
226 B
PHP
11 lines
226 B
PHP
<?php
|
|
/**
|
|
* Whoops - php errors for cool kids
|
|
* @author Filipe Dobreira <http://github.com/filp>
|
|
*
|
|
* Bootstraper for PHPUnit tests.
|
|
*/
|
|
error_reporting(E_ALL | E_STRICT);
|
|
|
|
require_once __DIR__ . '/../vendor/autoload.php';
|