Skip to content

Commit 50f5101

Browse files
committed
[HtmlSanitizer] Remove experimental status
1 parent 3751c0e commit 50f5101

12 files changed

+1
-23
lines changed

HtmlSanitizer.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@
1919

2020
/**
2121
* @author Titouan Galopin <[email protected]>
22-
*
23-
* @experimental
2422
*/
2523
final class HtmlSanitizer implements HtmlSanitizerInterface
2624
{

HtmlSanitizerConfig.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@
1616

1717
/**
1818
* @author Titouan Galopin <[email protected]>
19-
*
20-
* @experimental
2119
*/
2220
class HtmlSanitizerConfig
2321
{

HtmlSanitizerInterface.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
* ({@see https://wicg.github.io/sanitizer-api/}).
1919
*
2020
* @author Titouan Galopin <[email protected]>
21-
*
22-
* @experimental
2321
*/
2422
interface HtmlSanitizerInterface
2523
{

Parser/MastermindsParser.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515

1616
/**
1717
* @author Titouan Galopin <[email protected]>
18-
*
19-
* @experimental
2018
*/
2119
final class MastermindsParser implements ParserInterface
2220
{

Parser/ParserInterface.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
* Transforms an untrusted HTML input string into a DOM tree.
1616
*
1717
* @author Titouan Galopin <[email protected]>
18-
*
19-
* @experimental
2018
*/
2119
interface ParserInterface
2220
{

Visitor/AttributeSanitizer/AttributeSanitizerInterface.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
* Implements attribute-specific sanitization logic.
1818
*
1919
* @author Titouan Galopin <[email protected]>
20-
*
21-
* @experimental
2220
*/
2321
interface AttributeSanitizerInterface
2422
{

Visitor/AttributeSanitizer/UrlAttributeSanitizer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
use Symfony\Component\HtmlSanitizer\TextSanitizer\UrlSanitizer;
1616

1717
/**
18-
* @experimental
18+
* @author Titouan Galopin <[email protected]>
1919
*/
2020
final class UrlAttributeSanitizer implements AttributeSanitizerInterface
2121
{

Visitor/Node/BlockedNode.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313

1414
/**
1515
* @author Titouan Galopin <[email protected]>
16-
*
17-
* @experimental
1816
*/
1917
final class BlockedNode implements NodeInterface
2018
{

Visitor/Node/DocumentNode.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313

1414
/**
1515
* @author Titouan Galopin <[email protected]>
16-
*
17-
* @experimental
1816
*/
1917
final class DocumentNode implements NodeInterface
2018
{

Visitor/Node/Node.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515

1616
/**
1717
* @author Titouan Galopin <[email protected]>
18-
*
19-
* @experimental
2018
*/
2119
final class Node implements NodeInterface
2220
{

Visitor/Node/NodeInterface.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
* Once the sanitization is done, nodes are rendered into the final output string.
1818
*
1919
* @author Titouan Galopin <[email protected]>
20-
*
21-
* @experimental
2220
*/
2321
interface NodeInterface
2422
{

Visitor/Node/TextNode.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515

1616
/**
1717
* @author Titouan Galopin <[email protected]>
18-
*
19-
* @experimental
2018
*/
2119
final class TextNode implements NodeInterface
2220
{

0 commit comments

Comments
 (0)