= 0); \define('KINT_PHP81', \version_compare(PHP_VERSION, '8.1') >= 0); \define('KINT_PHP82', \version_compare(PHP_VERSION, '8.2') >= 0); \define('KINT_PHP83', \version_compare(PHP_VERSION, '8.3') >= 0); \define('KINT_PHP84', \version_compare(PHP_VERSION, '8.4') >= 0); \define('KINT_PHP85', \version_compare(PHP_VERSION, '8.5') >= 0); // Dynamic default settings if (\strlen((string) \ini_get('xdebug.file_link_format')) > 0) { /** @psalm-var non-empty-string ini_get('xdebug.file_link_format') */ AbstractRenderer::$file_link_format = \ini_get('xdebug.file_link_format'); } if (isset($_SERVER['DOCUMENT_ROOT']) && false === \strpos($_SERVER['DOCUMENT_ROOT'], "\0")) { Utils::$path_aliases = [ $_SERVER['DOCUMENT_ROOT'] => '', ]; // Suppressed for unreadable document roots (related to open_basedir) if (false !== @\realpath($_SERVER['DOCUMENT_ROOT'])) { /** @psalm-suppress PropertyTypeCoercion */ Utils::$path_aliases[\realpath($_SERVER['DOCUMENT_ROOT'])] = ''; } } Utils::composerSkipFlags(); if ((!\defined('KINT_SKIP_FACADE') || !KINT_SKIP_FACADE) && !\class_exists('Kint')) { \class_alias(Kint::class, 'Kint'); } if (!\defined('KINT_SKIP_HELPERS') || !KINT_SKIP_HELPERS) { require_once __DIR__.'/init_helpers.php'; }