From 9831b9dca170998458beecc1e18a79e3850d2a4e Mon Sep 17 00:00:00 2001 From: netkas Date: Thu, 19 Sep 2024 15:19:41 -0400 Subject: [PATCH] Updated Symfony/polyfill-ctype to version 1.31.0 --- CHANGELOG.md | 1 + src/ncc/ThirdParty/Symfony/polyfill_ctype/Ctype.php | 2 +- src/ncc/ThirdParty/Symfony/polyfill_ctype/VERSION | 2 +- src/ncc/ThirdParty/Symfony/polyfill_ctype/bootstrap.php | 2 +- src/ncc/ThirdParty/Symfony/polyfill_ctype/bootstrap80.php | 2 +- 5 files changed, 5 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a484867..c4c1458 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -70,6 +70,7 @@ This update introduces a refactored code-base, code quality improvements, and be - Updated Symfony/Yaml to version 7.1.4 - Updated Symfony/Uid to version 7.1.4 - Updated Symfony/Process to version 7.1.3 + - Updated Symfony/polyfill-ctype to version 1.31.0 ### Fixed - Fixed Division by zero in PackageManager diff --git a/src/ncc/ThirdParty/Symfony/polyfill_ctype/Ctype.php b/src/ncc/ThirdParty/Symfony/polyfill_ctype/Ctype.php index 9963f55..ba75a2c 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 ncc\ThirdParty\Symfony\polyfill_ctype; +namespace Symfony\Polyfill\Ctype; /** * Ctype implementation through regex. diff --git a/src/ncc/ThirdParty/Symfony/polyfill_ctype/VERSION b/src/ncc/ThirdParty/Symfony/polyfill_ctype/VERSION index 3c71e47..8b96872 100644 --- a/src/ncc/ThirdParty/Symfony/polyfill_ctype/VERSION +++ b/src/ncc/ThirdParty/Symfony/polyfill_ctype/VERSION @@ -1 +1 @@ -1.28.0 \ No newline at end of file +1.31.0 \ No newline at end of file diff --git a/src/ncc/ThirdParty/Symfony/polyfill_ctype/bootstrap.php b/src/ncc/ThirdParty/Symfony/polyfill_ctype/bootstrap.php index 06e1b95..d54524b 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 ncc\ThirdParty\Symfony\polyfill_ctype as p; +use 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 ec1ed5f..ab2f861 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 ncc\ThirdParty\Symfony\polyfill_ctype as p; +use Symfony\Polyfill\Ctype as p; if (!function_exists('ctype_alnum')) { function ctype_alnum(mixed $text): bool { return p\Ctype::ctype_alnum($text); }