Updated Symfony/polyfill-ctype to version 1.31.0

This commit is contained in:
netkas 2024-09-19 15:19:41 -04:00
parent dd48100f06
commit 9831b9dca1
5 changed files with 5 additions and 4 deletions

View file

@ -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

View file

@ -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.

View file

@ -1 +1 @@
1.28.0
1.31.0

View file

@ -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';

View file

@ -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); }