<?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. */useSymfony\Polyfill\Intl\Normalizerasp;if(!function_exists('normalizer_is_normalized')){functionnormalizer_is_normalized(?string$string,?int$form=p\Normalizer::FORM_C):bool{returnp\Normalizer::isNormalized((string)$string,(int)$form);}}if(!function_exists('normalizer_normalize')){functionnormalizer_normalize(?string$string,?int$form=p\Normalizer::FORM_C):string|false{returnp\Normalizer::normalize((string)$string,(int)$form);}}