1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-27 12:55:26 +01:00
psalm/tests/bootstrap.php

13 lines
268 B
PHP
Raw Normal View History

2016-12-07 06:21:46 +01:00
<?php
ini_set('display_startup_errors', 1);
ini_set('html_errors', 1);
2016-12-31 01:36:35 +01:00
error_reporting(E_ALL);
2016-12-07 06:21:46 +01:00
foreach ([__DIR__ . '/../../../autoload.php', __DIR__ . '/../vendor/autoload.php'] as $file) {
if (file_exists($file)) {
require $file;
break;
}
}