rector/tests/bootstrap.php
2019-10-04 19:03:07 +02:00

18 lines
305 B
PHP

<?php
declare(strict_types=1);
use Rector\Stubs\StubLoader;
require_once __DIR__ . '/../vendor/autoload.php';
// silent deprecations, since we test them
error_reporting(E_ALL ^ E_DEPRECATED);
// performance boost
gc_disable();
// load stubs
$stubLoader = new StubLoader();
$stubLoader->loadStubs();