mirror of
https://github.com/rectorphp/rector.git
synced 2025-01-18 05:48:21 +01:00
65abab80de
5c1be93b80
PHP 8.2 is supported (#3717)
36 lines
982 B
PHP
36 lines
982 B
PHP
<?php
|
|
|
|
// scoper-autoload.php @generated by PhpScoper
|
|
|
|
$loader = require_once __DIR__.'/autoload.php';
|
|
|
|
// Exposed functions. For more information see:
|
|
// https://github.com/humbug/php-scoper/blob/master/docs/configuration.md#exposing-functions
|
|
if (!function_exists('dump_with_depth')) {
|
|
function dump_with_depth() {
|
|
return \RectorPrefix202305\dump_with_depth(...func_get_args());
|
|
}
|
|
}
|
|
if (!function_exists('dn')) {
|
|
function dn() {
|
|
return \RectorPrefix202305\dn(...func_get_args());
|
|
}
|
|
}
|
|
if (!function_exists('dump_node')) {
|
|
function dump_node() {
|
|
return \RectorPrefix202305\dump_node(...func_get_args());
|
|
}
|
|
}
|
|
if (!function_exists('print_node')) {
|
|
function print_node() {
|
|
return \RectorPrefix202305\print_node(...func_get_args());
|
|
}
|
|
}
|
|
if (!function_exists('trigger_deprecation')) {
|
|
function trigger_deprecation() {
|
|
return \RectorPrefix202305\trigger_deprecation(...func_get_args());
|
|
}
|
|
}
|
|
|
|
return $loader;
|