diff --git a/src/ncc/ThirdParty/Symfony/polyfill_ctype/Ctype.php b/src/ncc/ThirdParty/Symfony/polyfill_ctype/Ctype.php index ba75a2c..9963f55 100644 --- a/src/ncc/ThirdParty/Symfony/polyfill_ctype/Ctype.php +++ b/src/ncc/ThirdParty/Symfony/polyfill_ctype/Ctype.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Symfony\Polyfill\Ctype; +namespace ncc\ThirdParty\Symfony\polyfill_ctype; /** * Ctype implementation through regex. diff --git a/src/ncc/ThirdParty/Symfony/polyfill_ctype/bootstrap.php b/src/ncc/ThirdParty/Symfony/polyfill_ctype/bootstrap.php index d54524b..06e1b95 100644 --- a/src/ncc/ThirdParty/Symfony/polyfill_ctype/bootstrap.php +++ b/src/ncc/ThirdParty/Symfony/polyfill_ctype/bootstrap.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -use Symfony\Polyfill\Ctype as p; +use ncc\ThirdParty\Symfony\polyfill_ctype as p; if (\PHP_VERSION_ID >= 80000) { return require __DIR__.'/bootstrap80.php'; diff --git a/src/ncc/ThirdParty/Symfony/polyfill_ctype/bootstrap80.php b/src/ncc/ThirdParty/Symfony/polyfill_ctype/bootstrap80.php index ab2f861..ec1ed5f 100644 --- a/src/ncc/ThirdParty/Symfony/polyfill_ctype/bootstrap80.php +++ b/src/ncc/ThirdParty/Symfony/polyfill_ctype/bootstrap80.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -use Symfony\Polyfill\Ctype as p; +use ncc\ThirdParty\Symfony\polyfill_ctype as p; if (!function_exists('ctype_alnum')) { function ctype_alnum(mixed $text): bool { return p\Ctype::ctype_alnum($text); }