Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 3d15f91

Browse filesBrowse files
committed
[String] Remove the @experimental status
1 parent e87f86b commit 3d15f91
Copy full SHA for 3d15f91

13 files changed

+1
-34
lines changed

‎src/Symfony/Component/String/AbstractString.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/String/AbstractString.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,6 @@
2626
* @author Hugo Hamon <hugohamon@neuf.fr>
2727
*
2828
* @throws ExceptionInterface
29-
*
30-
* @experimental in 5.0
3129
*/
3230
abstract class AbstractString implements \JsonSerializable
3331
{

‎src/Symfony/Component/String/AbstractUnicodeString.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/String/AbstractUnicodeString.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@
2525
* @author Nicolas Grekas <p@tchwork.com>
2626
*
2727
* @throws ExceptionInterface
28-
*
29-
* @experimental in 5.0
3028
*/
3129
abstract class AbstractUnicodeString extends AbstractString
3230
{

‎src/Symfony/Component/String/ByteString.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/String/ByteString.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@
2222
* @author Hugo Hamon <hugohamon@neuf.fr>
2323
*
2424
* @throws ExceptionInterface
25-
*
26-
* @experimental in 5.0
2725
*/
2826
class ByteString extends AbstractString
2927
{

‎src/Symfony/Component/String/CHANGELOG.md

Copy file name to clipboardExpand all lines: src/Symfony/Component/String/CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ CHANGELOG
77
* added the `AbstractString::reverse()` method
88
* made `AbstractString::width()` follow POSIX.1-2001
99
* added `LazyString` which provides memoizing stringable objects
10+
* The component is not marked as `@experimental` anymore.
1011

1112
5.0.0
1213
-----

‎src/Symfony/Component/String/CodePointString.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/String/CodePointString.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@
2121
* @author Hugo Hamon <hugohamon@neuf.fr>
2222
*
2323
* @throws ExceptionInterface
24-
*
25-
* @experimental in 5.0
2624
*/
2725
class CodePointString extends AbstractUnicodeString
2826
{

‎src/Symfony/Component/String/Exception/ExceptionInterface.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/String/Exception/ExceptionInterface.php
-3Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@
1111

1212
namespace Symfony\Component\String\Exception;
1313

14-
/**
15-
* @experimental in 5.0
16-
*/
1714
interface ExceptionInterface extends \Throwable
1815
{
1916
}

‎src/Symfony/Component/String/Exception/InvalidArgumentException.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/String/Exception/InvalidArgumentException.php
-3Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@
1111

1212
namespace Symfony\Component\String\Exception;
1313

14-
/**
15-
* @experimental in 5.0
16-
*/
1714
class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface
1815
{
1916
}

‎src/Symfony/Component/String/Exception/RuntimeException.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/String/Exception/RuntimeException.php
-3Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@
1111

1212
namespace Symfony\Component\String\Exception;
1313

14-
/**
15-
* @experimental in 5.0
16-
*/
1714
class RuntimeException extends \RuntimeException implements ExceptionInterface
1815
{
1916
}

‎src/Symfony/Component/String/README.md

Copy file name to clipboardExpand all lines: src/Symfony/Component/String/README.md
-5Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,6 @@ String Component
44
The String component provides an object-oriented API to strings and deals
55
with bytes, UTF-8 code points and grapheme clusters in a unified way.
66

7-
**This component is experimental**.
8-
[Experimental features](https://symfony.com/doc/current/contributing/code/experimental.html)
9-
are not covered by Symfony's
10-
[Backward Compatibility Promise](https://symfony.com/doc/current/contributing/code/bc.html).
11-
127
Resources
138
---------
149

‎src/Symfony/Component/String/Resources/functions.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/String/Resources/functions.php
-6Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,11 @@
1111

1212
namespace Symfony\Component\String;
1313

14-
/**
15-
* @experimental in 5.0
16-
*/
1714
function u(string $string = ''): UnicodeString
1815
{
1916
return new UnicodeString($string);
2017
}
2118

22-
/**
23-
* @experimental in 5.0
24-
*/
2519
function b(string $string = ''): ByteString
2620
{
2721
return new ByteString($string);

‎src/Symfony/Component/String/Slugger/AsciiSlugger.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/String/Slugger/AsciiSlugger.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717

1818
/**
1919
* @author Titouan Galopin <galopintitouan@gmail.com>
20-
*
21-
* @experimental in 5.0
2220
*/
2321
class AsciiSlugger implements SluggerInterface, LocaleAwareInterface
2422
{

‎src/Symfony/Component/String/Slugger/SluggerInterface.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/String/Slugger/SluggerInterface.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
* Creates a URL-friendly slug from a given string.
1818
*
1919
* @author Titouan Galopin <galopintitouan@gmail.com>
20-
*
21-
* @experimental in 5.0
2220
*/
2321
interface SluggerInterface
2422
{

‎src/Symfony/Component/String/UnicodeString.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/String/UnicodeString.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@
2929
* @author Hugo Hamon <hugohamon@neuf.fr>
3030
*
3131
* @throws ExceptionInterface
32-
*
33-
* @experimental in 5.0
3432
*/
3533
class UnicodeString extends AbstractUnicodeString
3634
{

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.