%PDF- %PDF-
Direktori : /home/vacivi36/vacivitta.com.br/vendor/rector/rector/vendor/symfony/string/Resources/ |
Current File : /home/vacivi36/vacivitta.com.br/vendor/rector/rector/vendor/symfony/string/Resources/functions.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. */ namespace RectorPrefix20211231\Symfony\Component\String; if (!\function_exists(\RectorPrefix20211231\Symfony\Component\String\u::class)) { function u(?string $string = '') : \RectorPrefix20211231\Symfony\Component\String\UnicodeString { return new \RectorPrefix20211231\Symfony\Component\String\UnicodeString($string ?? ''); } } if (!\function_exists(\RectorPrefix20211231\Symfony\Component\String\b::class)) { function b(?string $string = '') : \RectorPrefix20211231\Symfony\Component\String\ByteString { return new \RectorPrefix20211231\Symfony\Component\String\ByteString($string ?? ''); } } if (!\function_exists(\RectorPrefix20211231\Symfony\Component\String\s::class)) { /** * @return UnicodeString|ByteString */ function s(?string $string = '') : \RectorPrefix20211231\Symfony\Component\String\AbstractString { $string = $string ?? ''; return \preg_match('//u', $string) ? new \RectorPrefix20211231\Symfony\Component\String\UnicodeString($string) : new \RectorPrefix20211231\Symfony\Component\String\ByteString($string); } }