rector/vendor/symfony/polyfill-intl-normalizer/bootstrap.php
Tomas Votruba 0f17e48d24 Updated Rector to commit fc17cc90a9
fc17cc90a9 [Php80] Test for misplaced } on multiline in AnnotationToAttributeRector (#218)
2021-06-14 02:16:47 +00:00

29 lines
993 B
PHP

<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
use RectorPrefix20210614\Symfony\Polyfill\Intl\Normalizer as p;
if (\PHP_VERSION_ID >= 80000) {
return require __DIR__ . '/bootstrap80.php';
}
if (!\function_exists('normalizer_is_normalized')) {
function normalizer_is_normalized($string, $form = \RectorPrefix20210614\Symfony\Polyfill\Intl\Normalizer\Normalizer::FORM_C)
{
return \RectorPrefix20210614\Symfony\Polyfill\Intl\Normalizer\Normalizer::isNormalized($string, $form);
}
}
if (!\function_exists('normalizer_normalize')) {
function normalizer_normalize($string, $form = \RectorPrefix20210614\Symfony\Polyfill\Intl\Normalizer\Normalizer::FORM_C)
{
return \RectorPrefix20210614\Symfony\Polyfill\Intl\Normalizer\Normalizer::normalize($string, $form);
}
}