Skip to content

[HtmlSanitizer] Remove experimental status #49343

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions src/Symfony/Component/HtmlSanitizer/HtmlSanitizer.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@

/**
* @author Titouan Galopin <galopintitouan@gmail.com>
*
* @experimental
*/
final class HtmlSanitizer implements HtmlSanitizerInterface
{
Expand Down
2 changes: 0 additions & 2 deletions src/Symfony/Component/HtmlSanitizer/HtmlSanitizerConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@

/**
* @author Titouan Galopin <galopintitouan@gmail.com>
*
* @experimental
*/
class HtmlSanitizerConfig
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@
* ({@see https://wicg.github.io/sanitizer-api/}).
*
* @author Titouan Galopin <galopintitouan@gmail.com>
*
* @experimental
*/
interface HtmlSanitizerInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@

/**
* @author Titouan Galopin <galopintitouan@gmail.com>
*
* @experimental
*/
final class MastermindsParser implements ParserInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@
* Transforms an untrusted HTML input string into a DOM tree.
*
* @author Titouan Galopin <galopintitouan@gmail.com>
*
* @experimental
*/
interface ParserInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@
* Implements attribute-specific sanitization logic.
*
* @author Titouan Galopin <galopintitouan@gmail.com>
*
* @experimental
*/
interface AttributeSanitizerInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
use Symfony\Component\HtmlSanitizer\TextSanitizer\UrlSanitizer;

/**
* @experimental
* @author Titouan Galopin <galopintitouan@gmail.com>
*/
final class UrlAttributeSanitizer implements AttributeSanitizerInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@

/**
* @author Titouan Galopin <galopintitouan@gmail.com>
*
* @experimental
*/
final class BlockedNode implements NodeInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@

/**
* @author Titouan Galopin <galopintitouan@gmail.com>
*
* @experimental
*/
final class DocumentNode implements NodeInterface
{
Expand Down
2 changes: 0 additions & 2 deletions src/Symfony/Component/HtmlSanitizer/Visitor/Node/Node.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@

/**
* @author Titouan Galopin <galopintitouan@gmail.com>
*
* @experimental
*/
final class Node implements NodeInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@
* Once the sanitization is done, nodes are rendered into the final output string.
*
* @author Titouan Galopin <galopintitouan@gmail.com>
*
* @experimental
*/
interface NodeInterface
{
Expand Down
2 changes: 0 additions & 2 deletions src/Symfony/Component/HtmlSanitizer/Visitor/Node/TextNode.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@

/**
* @author Titouan Galopin <galopintitouan@gmail.com>
*
* @experimental
*/
final class TextNode implements NodeInterface
{
Expand Down