mirror of
https://github.com/rectorphp/rector.git
synced 2025-01-17 21:38:22 +01:00
10 lines
201 B
PHP
10 lines
201 B
PHP
<?php declare(strict_types=1);
|
|
|
|
require_once __DIR__ . '/../vendor/autoload.php';
|
|
|
|
// silent deprecations, since we test them
|
|
error_reporting(E_ALL ^ E_DEPRECATED);
|
|
|
|
// performance boost
|
|
gc_disable();
|