rector/tests/bootstrap.php

10 lines
201 B
PHP
Raw Normal View History

2017-11-10 23:14:17 +01:00
<?php declare(strict_types=1);
require_once __DIR__ . '/../vendor/autoload.php';
// silent deprecations, since we test them
error_reporting(E_ALL ^ E_DEPRECATED);
2018-04-02 00:32:51 +02:00
// performance boost
2017-11-10 23:15:35 +01:00
gc_disable();