This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/String
Nicolas Grekas c650fe6dfc minor #35945 Leverage PHP8's get_debug_type() (nicolas-grekas)
This PR was merged into the 5.1-dev branch.

Discussion
----------

Leverage PHP8's get_debug_type()

| Q             | A
| ------------- | ---
| Branch?       | master
| Bug fix?      | no
| New feature?  | no
| Deprecations? | no
| Tickets       | -
| License       | MIT
| Doc PR        | -

See https://github.com/symfony/polyfill/pull/226 for background.

We might have to port part of the patch to 4.4 when we'll work on having it support PHP 8, but that's not needed for now.

Commits
-------

daf1c6605e Leverage PHP8's get_debug_type()
2020-03-16 18:33:00 +01:00
..
Exception [String] Remove the @experimental status 2020-02-06 17:58:08 +01:00
Resources [String] Update wcswidth data 2020-03-12 09:06:22 +01:00
Slugger [String] Transliterate & to and 2020-02-13 16:03:58 +01:00
Tests feature #35936 [String] Add AbstractString::containsAny() (nicolas-grekas) 2020-03-16 17:24:27 +01:00
.gitattributes [String] Made AbstractString::width() follow POSIX.1-2001 2020-01-23 11:37:52 +01:00
.gitignore [String] a new component for object-oriented strings management with an abstract unit system 2019-09-25 16:38:20 +02:00
AbstractString.php feature #35936 [String] Add AbstractString::containsAny() (nicolas-grekas) 2020-03-16 17:24:27 +01:00
AbstractUnicodeString.php Merge branch '5.0' 2020-03-16 14:12:54 +01:00
ByteString.php Merge branch '5.0' 2020-03-16 14:12:54 +01:00
CHANGELOG.md [String] Add AbstractString::containsAny() 2020-03-03 14:08:48 +01:00
CodePointString.php [String] Remove the @experimental status 2020-02-06 17:58:08 +01:00
composer.json [String] leverage Stringable from PHP 8 2020-03-13 11:54:27 +01:00
LazyString.php Leverage PHP8's get_debug_type() 2020-03-16 17:46:21 +01:00
LICENSE Update year in license files 2020-01-01 15:53:07 +01:00
phpunit.xml.dist [String] a new component for object-oriented strings management with an abstract unit system 2019-09-25 16:38:20 +02:00
README.md [String] Remove the @experimental status 2020-02-06 17:58:08 +01:00
UnicodeString.php Merge branch '5.0' 2020-02-29 11:07:16 +01:00

String Component

The String component provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way.

Resources