diff --git a/src/Symfony/Component/Notifier/Bridge/Discord/CHANGELOG.md b/src/Symfony/Component/Notifier/Bridge/Discord/CHANGELOG.md index 0d994e934e..d8e243dcb9 100644 --- a/src/Symfony/Component/Notifier/Bridge/Discord/CHANGELOG.md +++ b/src/Symfony/Component/Notifier/Bridge/Discord/CHANGELOG.md @@ -1,6 +1,11 @@ CHANGELOG ========= +5.3.0 +----- + + * The bridge is not marked as `@experimental` anymore + 5.2.0 ----- diff --git a/src/Symfony/Component/Notifier/Bridge/Discord/DiscordOptions.php b/src/Symfony/Component/Notifier/Bridge/Discord/DiscordOptions.php index 1fda563ec9..8cc74e3b50 100644 --- a/src/Symfony/Component/Notifier/Bridge/Discord/DiscordOptions.php +++ b/src/Symfony/Component/Notifier/Bridge/Discord/DiscordOptions.php @@ -17,8 +17,6 @@ use Symfony\Component\Notifier\Message\MessageOptionsInterface; /** * @author Karoly Gossler - * - * @experimental in 5.3 */ final class DiscordOptions implements MessageOptionsInterface { diff --git a/src/Symfony/Component/Notifier/Bridge/Discord/DiscordTransport.php b/src/Symfony/Component/Notifier/Bridge/Discord/DiscordTransport.php index a85d29b274..f4c223e1eb 100644 --- a/src/Symfony/Component/Notifier/Bridge/Discord/DiscordTransport.php +++ b/src/Symfony/Component/Notifier/Bridge/Discord/DiscordTransport.php @@ -23,8 +23,6 @@ use Symfony\Contracts\HttpClient\HttpClientInterface; /** * @author Mathieu Piot - * - * @experimental in 5.3 */ final class DiscordTransport extends AbstractTransport { diff --git a/src/Symfony/Component/Notifier/Bridge/Discord/DiscordTransportFactory.php b/src/Symfony/Component/Notifier/Bridge/Discord/DiscordTransportFactory.php index e068340c10..776e1d7bc7 100644 --- a/src/Symfony/Component/Notifier/Bridge/Discord/DiscordTransportFactory.php +++ b/src/Symfony/Component/Notifier/Bridge/Discord/DiscordTransportFactory.php @@ -19,8 +19,6 @@ use Symfony\Component\Notifier\Transport\TransportInterface; /** * @author Mathieu Piot - * - * @experimental in 5.3 */ final class DiscordTransportFactory extends AbstractTransportFactory { diff --git a/src/Symfony/Component/Notifier/Bridge/Discord/Embeds/AbstractDiscordEmbed.php b/src/Symfony/Component/Notifier/Bridge/Discord/Embeds/AbstractDiscordEmbed.php index bf369caf07..57ef5a9c9a 100644 --- a/src/Symfony/Component/Notifier/Bridge/Discord/Embeds/AbstractDiscordEmbed.php +++ b/src/Symfony/Component/Notifier/Bridge/Discord/Embeds/AbstractDiscordEmbed.php @@ -13,8 +13,6 @@ namespace Symfony\Component\Notifier\Bridge\Discord\Embeds; /** * @author Karoly Gossler - * - * @experimental in 5.3 */ abstract class AbstractDiscordEmbed implements DiscordEmbedInterface { diff --git a/src/Symfony/Component/Notifier/Bridge/Discord/Embeds/AbstractDiscordEmbedObject.php b/src/Symfony/Component/Notifier/Bridge/Discord/Embeds/AbstractDiscordEmbedObject.php index 09f874eaaf..6fa5037038 100644 --- a/src/Symfony/Component/Notifier/Bridge/Discord/Embeds/AbstractDiscordEmbedObject.php +++ b/src/Symfony/Component/Notifier/Bridge/Discord/Embeds/AbstractDiscordEmbedObject.php @@ -13,8 +13,6 @@ namespace Symfony\Component\Notifier\Bridge\Discord\Embeds; /** * @author Karoly Gossler - * - * @experimental in 5.3 */ abstract class AbstractDiscordEmbedObject implements DiscordEmbedObjectInterface { diff --git a/src/Symfony/Component/Notifier/Bridge/Discord/Embeds/DiscordAuthorEmbedObject.php b/src/Symfony/Component/Notifier/Bridge/Discord/Embeds/DiscordAuthorEmbedObject.php index c0fe90189a..04987ef9f7 100644 --- a/src/Symfony/Component/Notifier/Bridge/Discord/Embeds/DiscordAuthorEmbedObject.php +++ b/src/Symfony/Component/Notifier/Bridge/Discord/Embeds/DiscordAuthorEmbedObject.php @@ -13,8 +13,6 @@ namespace Symfony\Component\Notifier\Bridge\Discord\Embeds; /** * @author Karoly Gossler - * - * @experimental in 5.3 */ final class DiscordAuthorEmbedObject extends AbstractDiscordEmbedObject { diff --git a/src/Symfony/Component/Notifier/Bridge/Discord/Embeds/DiscordEmbed.php b/src/Symfony/Component/Notifier/Bridge/Discord/Embeds/DiscordEmbed.php index ca2adb7635..71c2e783a4 100644 --- a/src/Symfony/Component/Notifier/Bridge/Discord/Embeds/DiscordEmbed.php +++ b/src/Symfony/Component/Notifier/Bridge/Discord/Embeds/DiscordEmbed.php @@ -13,8 +13,6 @@ namespace Symfony\Component\Notifier\Bridge\Discord\Embeds; /** * @author Karoly Gossler - * - * @experimental in 5.3 */ final class DiscordEmbed extends AbstractDiscordEmbed { diff --git a/src/Symfony/Component/Notifier/Bridge/Discord/Embeds/DiscordEmbedObjectInterface.php b/src/Symfony/Component/Notifier/Bridge/Discord/Embeds/DiscordEmbedObjectInterface.php index bc1f1398cc..3baac40bc7 100644 --- a/src/Symfony/Component/Notifier/Bridge/Discord/Embeds/DiscordEmbedObjectInterface.php +++ b/src/Symfony/Component/Notifier/Bridge/Discord/Embeds/DiscordEmbedObjectInterface.php @@ -13,8 +13,6 @@ namespace Symfony\Component\Notifier\Bridge\Discord\Embeds; /** * @author Karoly Gossler - * - * @experimental in 5.3 */ interface DiscordEmbedObjectInterface { diff --git a/src/Symfony/Component/Notifier/Bridge/Discord/Embeds/DiscordFieldEmbedObject.php b/src/Symfony/Component/Notifier/Bridge/Discord/Embeds/DiscordFieldEmbedObject.php index 20eb38031f..01761080ba 100644 --- a/src/Symfony/Component/Notifier/Bridge/Discord/Embeds/DiscordFieldEmbedObject.php +++ b/src/Symfony/Component/Notifier/Bridge/Discord/Embeds/DiscordFieldEmbedObject.php @@ -13,8 +13,6 @@ namespace Symfony\Component\Notifier\Bridge\Discord\Embeds; /** * @author Karoly Gossler - * - * @experimental in 5.3 */ final class DiscordFieldEmbedObject extends AbstractDiscordEmbedObject { diff --git a/src/Symfony/Component/Notifier/Bridge/Discord/Embeds/DiscordFooterEmbedObject.php b/src/Symfony/Component/Notifier/Bridge/Discord/Embeds/DiscordFooterEmbedObject.php index 516f56c863..42320e3516 100644 --- a/src/Symfony/Component/Notifier/Bridge/Discord/Embeds/DiscordFooterEmbedObject.php +++ b/src/Symfony/Component/Notifier/Bridge/Discord/Embeds/DiscordFooterEmbedObject.php @@ -13,8 +13,6 @@ namespace Symfony\Component\Notifier\Bridge\Discord\Embeds; /** * @author Karoly Gossler - * - * @experimental in 5.3 */ final class DiscordFooterEmbedObject extends AbstractDiscordEmbedObject { diff --git a/src/Symfony/Component/Notifier/Bridge/Discord/Embeds/DiscordMediaEmbedObject.php b/src/Symfony/Component/Notifier/Bridge/Discord/Embeds/DiscordMediaEmbedObject.php index a53bb42947..fdddf21ed2 100644 --- a/src/Symfony/Component/Notifier/Bridge/Discord/Embeds/DiscordMediaEmbedObject.php +++ b/src/Symfony/Component/Notifier/Bridge/Discord/Embeds/DiscordMediaEmbedObject.php @@ -13,8 +13,6 @@ namespace Symfony\Component\Notifier\Bridge\Discord\Embeds; /** * @author Karoly Gossler - * - * @experimental in 5.3 */ class DiscordMediaEmbedObject extends AbstractDiscordEmbedObject { diff --git a/src/Symfony/Component/Notifier/Bridge/Esendex/CHANGELOG.md b/src/Symfony/Component/Notifier/Bridge/Esendex/CHANGELOG.md index 0d994e934e..d8e243dcb9 100644 --- a/src/Symfony/Component/Notifier/Bridge/Esendex/CHANGELOG.md +++ b/src/Symfony/Component/Notifier/Bridge/Esendex/CHANGELOG.md @@ -1,6 +1,11 @@ CHANGELOG ========= +5.3.0 +----- + + * The bridge is not marked as `@experimental` anymore + 5.2.0 ----- diff --git a/src/Symfony/Component/Notifier/Bridge/Esendex/EsendexTransport.php b/src/Symfony/Component/Notifier/Bridge/Esendex/EsendexTransport.php index 75a43a96bb..0cdfc933a7 100644 --- a/src/Symfony/Component/Notifier/Bridge/Esendex/EsendexTransport.php +++ b/src/Symfony/Component/Notifier/Bridge/Esendex/EsendexTransport.php @@ -22,9 +22,6 @@ use Symfony\Component\Notifier\Transport\AbstractTransport; use Symfony\Contracts\EventDispatcher\EventDispatcherInterface; use Symfony\Contracts\HttpClient\HttpClientInterface; -/** - * @experimental in 5.3 - */ final class EsendexTransport extends AbstractTransport { protected const HOST = 'api.esendex.com'; diff --git a/src/Symfony/Component/Notifier/Bridge/Esendex/EsendexTransportFactory.php b/src/Symfony/Component/Notifier/Bridge/Esendex/EsendexTransportFactory.php index 0ab3e493eb..cde7d60027 100644 --- a/src/Symfony/Component/Notifier/Bridge/Esendex/EsendexTransportFactory.php +++ b/src/Symfony/Component/Notifier/Bridge/Esendex/EsendexTransportFactory.php @@ -17,9 +17,6 @@ use Symfony\Component\Notifier\Transport\AbstractTransportFactory; use Symfony\Component\Notifier\Transport\Dsn; use Symfony\Component\Notifier\Transport\TransportInterface; -/** - * @experimental in 5.3 - */ final class EsendexTransportFactory extends AbstractTransportFactory { /** diff --git a/src/Symfony/Component/Notifier/Bridge/Firebase/CHANGELOG.md b/src/Symfony/Component/Notifier/Bridge/Firebase/CHANGELOG.md index 7bd5e9a57f..b1c417c0b3 100644 --- a/src/Symfony/Component/Notifier/Bridge/Firebase/CHANGELOG.md +++ b/src/Symfony/Component/Notifier/Bridge/Firebase/CHANGELOG.md @@ -1,6 +1,11 @@ CHANGELOG ========= +5.3.0 +----- + + * The bridge is not marked as `@experimental` anymore + 5.1.0 ----- diff --git a/src/Symfony/Component/Notifier/Bridge/Firebase/FirebaseOptions.php b/src/Symfony/Component/Notifier/Bridge/Firebase/FirebaseOptions.php index f212e26f8c..d632f7d341 100644 --- a/src/Symfony/Component/Notifier/Bridge/Firebase/FirebaseOptions.php +++ b/src/Symfony/Component/Notifier/Bridge/Firebase/FirebaseOptions.php @@ -17,8 +17,6 @@ use Symfony\Component\Notifier\Message\MessageOptionsInterface; * @author Jeroen Spee * * @see https://firebase.google.com/docs/cloud-messaging/xmpp-server-ref.html - * - * @experimental in 5.3 */ abstract class FirebaseOptions implements MessageOptionsInterface { diff --git a/src/Symfony/Component/Notifier/Bridge/Firebase/FirebaseTransport.php b/src/Symfony/Component/Notifier/Bridge/Firebase/FirebaseTransport.php index e53beb6d99..6e6cefbc16 100644 --- a/src/Symfony/Component/Notifier/Bridge/Firebase/FirebaseTransport.php +++ b/src/Symfony/Component/Notifier/Bridge/Firebase/FirebaseTransport.php @@ -23,8 +23,6 @@ use Symfony\Contracts\HttpClient\HttpClientInterface; /** * @author Jeroen Spee - * - * @experimental in 5.3 */ final class FirebaseTransport extends AbstractTransport { diff --git a/src/Symfony/Component/Notifier/Bridge/Firebase/FirebaseTransportFactory.php b/src/Symfony/Component/Notifier/Bridge/Firebase/FirebaseTransportFactory.php index dabe532322..962978b1d2 100644 --- a/src/Symfony/Component/Notifier/Bridge/Firebase/FirebaseTransportFactory.php +++ b/src/Symfony/Component/Notifier/Bridge/Firebase/FirebaseTransportFactory.php @@ -18,8 +18,6 @@ use Symfony\Component\Notifier\Transport\TransportInterface; /** * @author Jeroen Spee - * - * @experimental in 5.3 */ final class FirebaseTransportFactory extends AbstractTransportFactory { diff --git a/src/Symfony/Component/Notifier/Bridge/Firebase/Notification/AndroidNotification.php b/src/Symfony/Component/Notifier/Bridge/Firebase/Notification/AndroidNotification.php index 472bd69631..add6a8e4b4 100644 --- a/src/Symfony/Component/Notifier/Bridge/Firebase/Notification/AndroidNotification.php +++ b/src/Symfony/Component/Notifier/Bridge/Firebase/Notification/AndroidNotification.php @@ -13,9 +13,6 @@ namespace Symfony\Component\Notifier\Bridge\Firebase\Notification; use Symfony\Component\Notifier\Bridge\Firebase\FirebaseOptions; -/** - * @experimental in 5.3 - */ final class AndroidNotification extends FirebaseOptions { public function channelId(string $channelId): self diff --git a/src/Symfony/Component/Notifier/Bridge/Firebase/Notification/IOSNotification.php b/src/Symfony/Component/Notifier/Bridge/Firebase/Notification/IOSNotification.php index e8cc16cebc..23f44f9182 100644 --- a/src/Symfony/Component/Notifier/Bridge/Firebase/Notification/IOSNotification.php +++ b/src/Symfony/Component/Notifier/Bridge/Firebase/Notification/IOSNotification.php @@ -13,9 +13,6 @@ namespace Symfony\Component\Notifier\Bridge\Firebase\Notification; use Symfony\Component\Notifier\Bridge\Firebase\FirebaseOptions; -/** - * @experimental in 5.3 - */ final class IOSNotification extends FirebaseOptions { public function sound(string $sound): self diff --git a/src/Symfony/Component/Notifier/Bridge/Firebase/Notification/WebNotification.php b/src/Symfony/Component/Notifier/Bridge/Firebase/Notification/WebNotification.php index e8c7b45956..89d0e742b7 100644 --- a/src/Symfony/Component/Notifier/Bridge/Firebase/Notification/WebNotification.php +++ b/src/Symfony/Component/Notifier/Bridge/Firebase/Notification/WebNotification.php @@ -13,9 +13,6 @@ namespace Symfony\Component\Notifier\Bridge\Firebase\Notification; use Symfony\Component\Notifier\Bridge\Firebase\FirebaseOptions; -/** - * @experimental in 5.3 - */ final class WebNotification extends FirebaseOptions { public function icon(string $icon): self diff --git a/src/Symfony/Component/Notifier/Bridge/FreeMobile/CHANGELOG.md b/src/Symfony/Component/Notifier/Bridge/FreeMobile/CHANGELOG.md index 7bd5e9a57f..b1c417c0b3 100644 --- a/src/Symfony/Component/Notifier/Bridge/FreeMobile/CHANGELOG.md +++ b/src/Symfony/Component/Notifier/Bridge/FreeMobile/CHANGELOG.md @@ -1,6 +1,11 @@ CHANGELOG ========= +5.3.0 +----- + + * The bridge is not marked as `@experimental` anymore + 5.1.0 ----- diff --git a/src/Symfony/Component/Notifier/Bridge/FreeMobile/FreeMobileTransport.php b/src/Symfony/Component/Notifier/Bridge/FreeMobile/FreeMobileTransport.php index 6943029ad8..c63abcecaf 100644 --- a/src/Symfony/Component/Notifier/Bridge/FreeMobile/FreeMobileTransport.php +++ b/src/Symfony/Component/Notifier/Bridge/FreeMobile/FreeMobileTransport.php @@ -22,8 +22,6 @@ use Symfony\Contracts\HttpClient\HttpClientInterface; /** * @author Antoine Makdessi - * - * @experimental in 5.3 */ final class FreeMobileTransport extends AbstractTransport { diff --git a/src/Symfony/Component/Notifier/Bridge/FreeMobile/FreeMobileTransportFactory.php b/src/Symfony/Component/Notifier/Bridge/FreeMobile/FreeMobileTransportFactory.php index 5556c2fb34..94a5323546 100644 --- a/src/Symfony/Component/Notifier/Bridge/FreeMobile/FreeMobileTransportFactory.php +++ b/src/Symfony/Component/Notifier/Bridge/FreeMobile/FreeMobileTransportFactory.php @@ -19,8 +19,6 @@ use Symfony\Component\Notifier\Transport\TransportInterface; /** * @author Antoine Makdessi - * - * @experimental in 5.3 */ final class FreeMobileTransportFactory extends AbstractTransportFactory { diff --git a/src/Symfony/Component/Notifier/Bridge/GoogleChat/CHANGELOG.md b/src/Symfony/Component/Notifier/Bridge/GoogleChat/CHANGELOG.md index 0d994e934e..d8e243dcb9 100644 --- a/src/Symfony/Component/Notifier/Bridge/GoogleChat/CHANGELOG.md +++ b/src/Symfony/Component/Notifier/Bridge/GoogleChat/CHANGELOG.md @@ -1,6 +1,11 @@ CHANGELOG ========= +5.3.0 +----- + + * The bridge is not marked as `@experimental` anymore + 5.2.0 ----- diff --git a/src/Symfony/Component/Notifier/Bridge/GoogleChat/GoogleChatOptions.php b/src/Symfony/Component/Notifier/Bridge/GoogleChat/GoogleChatOptions.php index 3e6195bac7..77372cd510 100644 --- a/src/Symfony/Component/Notifier/Bridge/GoogleChat/GoogleChatOptions.php +++ b/src/Symfony/Component/Notifier/Bridge/GoogleChat/GoogleChatOptions.php @@ -18,8 +18,6 @@ use Symfony\Component\Notifier\Notification\Notification; /** * @author Jérôme Tamarelle - * - * @experimental in 5.3 */ final class GoogleChatOptions implements MessageOptionsInterface { diff --git a/src/Symfony/Component/Notifier/Bridge/GoogleChat/GoogleChatTransport.php b/src/Symfony/Component/Notifier/Bridge/GoogleChat/GoogleChatTransport.php index 0323a705a4..72acd33594 100644 --- a/src/Symfony/Component/Notifier/Bridge/GoogleChat/GoogleChatTransport.php +++ b/src/Symfony/Component/Notifier/Bridge/GoogleChat/GoogleChatTransport.php @@ -24,8 +24,6 @@ use Symfony\Contracts\HttpClient\HttpClientInterface; /** * @author Jérôme Tamarelle - * - * @experimental in 5.3 */ final class GoogleChatTransport extends AbstractTransport { diff --git a/src/Symfony/Component/Notifier/Bridge/GoogleChat/GoogleChatTransportFactory.php b/src/Symfony/Component/Notifier/Bridge/GoogleChat/GoogleChatTransportFactory.php index ad83a57929..359c5bbccb 100644 --- a/src/Symfony/Component/Notifier/Bridge/GoogleChat/GoogleChatTransportFactory.php +++ b/src/Symfony/Component/Notifier/Bridge/GoogleChat/GoogleChatTransportFactory.php @@ -18,8 +18,6 @@ use Symfony\Component\Notifier\Transport\TransportInterface; /** * @author Jérôme Tamarelle - * - * @experimental in 5.3 */ final class GoogleChatTransportFactory extends AbstractTransportFactory { diff --git a/src/Symfony/Component/Notifier/Bridge/Infobip/CHANGELOG.md b/src/Symfony/Component/Notifier/Bridge/Infobip/CHANGELOG.md index 0d994e934e..d8e243dcb9 100644 --- a/src/Symfony/Component/Notifier/Bridge/Infobip/CHANGELOG.md +++ b/src/Symfony/Component/Notifier/Bridge/Infobip/CHANGELOG.md @@ -1,6 +1,11 @@ CHANGELOG ========= +5.3.0 +----- + + * The bridge is not marked as `@experimental` anymore + 5.2.0 ----- diff --git a/src/Symfony/Component/Notifier/Bridge/Infobip/InfobipTransport.php b/src/Symfony/Component/Notifier/Bridge/Infobip/InfobipTransport.php index e4bf4a9e7a..df76522386 100644 --- a/src/Symfony/Component/Notifier/Bridge/Infobip/InfobipTransport.php +++ b/src/Symfony/Component/Notifier/Bridge/Infobip/InfobipTransport.php @@ -23,8 +23,6 @@ use Symfony\Contracts\HttpClient\HttpClientInterface; /** * @author Fabien Potencier * @author Jérémy Romey - * - * @experimental in 5.3 */ final class InfobipTransport extends AbstractTransport { diff --git a/src/Symfony/Component/Notifier/Bridge/Infobip/InfobipTransportFactory.php b/src/Symfony/Component/Notifier/Bridge/Infobip/InfobipTransportFactory.php index 4fb3e3692f..29755598a3 100644 --- a/src/Symfony/Component/Notifier/Bridge/Infobip/InfobipTransportFactory.php +++ b/src/Symfony/Component/Notifier/Bridge/Infobip/InfobipTransportFactory.php @@ -20,8 +20,6 @@ use Symfony\Component\Notifier\Transport\TransportInterface; /** * @author Fabien Potencier * @author Jérémy Romey - * - * @experimental in 5.3 */ final class InfobipTransportFactory extends AbstractTransportFactory { diff --git a/src/Symfony/Component/Notifier/Bridge/Iqsms/IqsmsTransport.php b/src/Symfony/Component/Notifier/Bridge/Iqsms/IqsmsTransport.php index 6e94473fe3..a83aee83eb 100644 --- a/src/Symfony/Component/Notifier/Bridge/Iqsms/IqsmsTransport.php +++ b/src/Symfony/Component/Notifier/Bridge/Iqsms/IqsmsTransport.php @@ -22,8 +22,6 @@ use Symfony\Contracts\HttpClient\HttpClientInterface; /** * @author Oleksandr Barabolia - * - * @experimental in 5.3 */ final class IqsmsTransport extends AbstractTransport { diff --git a/src/Symfony/Component/Notifier/Bridge/Iqsms/IqsmsTransportFactory.php b/src/Symfony/Component/Notifier/Bridge/Iqsms/IqsmsTransportFactory.php index 8faafc8185..6c607a6a73 100644 --- a/src/Symfony/Component/Notifier/Bridge/Iqsms/IqsmsTransportFactory.php +++ b/src/Symfony/Component/Notifier/Bridge/Iqsms/IqsmsTransportFactory.php @@ -19,8 +19,6 @@ use Symfony\Component\Notifier\Transport\TransportInterface; /** * @author Oleksandr Barabolia - * - * @experimental in 5.3 */ final class IqsmsTransportFactory extends AbstractTransportFactory { diff --git a/src/Symfony/Component/Notifier/Bridge/LinkedIn/CHANGELOG.md b/src/Symfony/Component/Notifier/Bridge/LinkedIn/CHANGELOG.md index 0d994e934e..d8e243dcb9 100644 --- a/src/Symfony/Component/Notifier/Bridge/LinkedIn/CHANGELOG.md +++ b/src/Symfony/Component/Notifier/Bridge/LinkedIn/CHANGELOG.md @@ -1,6 +1,11 @@ CHANGELOG ========= +5.3.0 +----- + + * The bridge is not marked as `@experimental` anymore + 5.2.0 ----- diff --git a/src/Symfony/Component/Notifier/Bridge/LinkedIn/LinkedInOptions.php b/src/Symfony/Component/Notifier/Bridge/LinkedIn/LinkedInOptions.php index 611a924c67..6302656453 100644 --- a/src/Symfony/Component/Notifier/Bridge/LinkedIn/LinkedInOptions.php +++ b/src/Symfony/Component/Notifier/Bridge/LinkedIn/LinkedInOptions.php @@ -20,8 +20,6 @@ use Symfony\Component\Notifier\Notification\Notification; /** * @author Smaïne Milianni - * - * @experimental in 5.3 */ final class LinkedInOptions implements MessageOptionsInterface { diff --git a/src/Symfony/Component/Notifier/Bridge/LinkedIn/LinkedInTransport.php b/src/Symfony/Component/Notifier/Bridge/LinkedIn/LinkedInTransport.php index 9ff68b66bf..bb281df6f7 100644 --- a/src/Symfony/Component/Notifier/Bridge/LinkedIn/LinkedInTransport.php +++ b/src/Symfony/Component/Notifier/Bridge/LinkedIn/LinkedInTransport.php @@ -25,8 +25,6 @@ use Symfony\Contracts\HttpClient\HttpClientInterface; /** * @author Smaïne Milianni * - * @experimental in 5.3 - * * @see https://docs.microsoft.com/en-us/linkedin/marketing/integrations/community-management/shares/ugc-post-api#sharecontent */ final class LinkedInTransport extends AbstractTransport diff --git a/src/Symfony/Component/Notifier/Bridge/LinkedIn/LinkedInTransportFactory.php b/src/Symfony/Component/Notifier/Bridge/LinkedIn/LinkedInTransportFactory.php index 78d1946230..c3dfc7357e 100644 --- a/src/Symfony/Component/Notifier/Bridge/LinkedIn/LinkedInTransportFactory.php +++ b/src/Symfony/Component/Notifier/Bridge/LinkedIn/LinkedInTransportFactory.php @@ -18,8 +18,6 @@ use Symfony\Component\Notifier\Transport\TransportInterface; /** * @author Smaïne Milianni - * - * @experimental in 5.3 */ class LinkedInTransportFactory extends AbstractTransportFactory { diff --git a/src/Symfony/Component/Notifier/Bridge/LinkedIn/Share/AbstractLinkedInShare.php b/src/Symfony/Component/Notifier/Bridge/LinkedIn/Share/AbstractLinkedInShare.php index ccae190e53..8a02cc734d 100644 --- a/src/Symfony/Component/Notifier/Bridge/LinkedIn/Share/AbstractLinkedInShare.php +++ b/src/Symfony/Component/Notifier/Bridge/LinkedIn/Share/AbstractLinkedInShare.php @@ -13,8 +13,6 @@ namespace Symfony\Component\Notifier\Bridge\LinkedIn\Share; /** * @author Smaïne Milianni - * - * @experimental in 5.3 */ abstract class AbstractLinkedInShare { diff --git a/src/Symfony/Component/Notifier/Bridge/LinkedIn/Share/AuthorShare.php b/src/Symfony/Component/Notifier/Bridge/LinkedIn/Share/AuthorShare.php index 4b801b8485..9558031a71 100644 --- a/src/Symfony/Component/Notifier/Bridge/LinkedIn/Share/AuthorShare.php +++ b/src/Symfony/Component/Notifier/Bridge/LinkedIn/Share/AuthorShare.php @@ -13,8 +13,6 @@ namespace Symfony\Component\Notifier\Bridge\LinkedIn\Share; /** * @author Smaïne Milianni - * - * @experimental in 5.3 */ final class AuthorShare extends AbstractLinkedInShare { diff --git a/src/Symfony/Component/Notifier/Bridge/LinkedIn/Share/LifecycleStateShare.php b/src/Symfony/Component/Notifier/Bridge/LinkedIn/Share/LifecycleStateShare.php index 6a340bbf3a..cf51d1835d 100644 --- a/src/Symfony/Component/Notifier/Bridge/LinkedIn/Share/LifecycleStateShare.php +++ b/src/Symfony/Component/Notifier/Bridge/LinkedIn/Share/LifecycleStateShare.php @@ -17,8 +17,6 @@ use Symfony\Component\Notifier\Exception\LogicException; * @author Smaïne Milianni * * @see https://docs.microsoft.com/en-us/linkedin/marketing/integrations/community-management/shares/ugc-post-api#schema lifecycleState section - * - * @experimental in 5.3 */ final class LifecycleStateShare extends AbstractLinkedInShare { diff --git a/src/Symfony/Component/Notifier/Bridge/LinkedIn/Share/ShareContentShare.php b/src/Symfony/Component/Notifier/Bridge/LinkedIn/Share/ShareContentShare.php index 6395a88066..1c70a6cde9 100644 --- a/src/Symfony/Component/Notifier/Bridge/LinkedIn/Share/ShareContentShare.php +++ b/src/Symfony/Component/Notifier/Bridge/LinkedIn/Share/ShareContentShare.php @@ -17,8 +17,6 @@ use Symfony\Component\Notifier\Exception\LogicException; * @author Smaïne Milianni * * @see https://docs.microsoft.com/en-us/linkedin/marketing/integrations/community-management/shares/ugc-post-api#sharecontent - * - * @experimental in 5.3 */ final class ShareContentShare extends AbstractLinkedInShare { diff --git a/src/Symfony/Component/Notifier/Bridge/LinkedIn/Share/ShareMediaShare.php b/src/Symfony/Component/Notifier/Bridge/LinkedIn/Share/ShareMediaShare.php index 0983652e69..f41fb85d45 100644 --- a/src/Symfony/Component/Notifier/Bridge/LinkedIn/Share/ShareMediaShare.php +++ b/src/Symfony/Component/Notifier/Bridge/LinkedIn/Share/ShareMediaShare.php @@ -17,8 +17,6 @@ use Symfony\Component\Notifier\Exception\LogicException; * @author Smaïne Milianni * * @see https://docs.microsoft.com/en-us/linkedin/marketing/integrations/community-management/shares/ugc-post-api#sharemedia - * - * @experimental in 5.3 */ class ShareMediaShare extends AbstractLinkedInShare { diff --git a/src/Symfony/Component/Notifier/Bridge/LinkedIn/Share/VisibilityShare.php b/src/Symfony/Component/Notifier/Bridge/LinkedIn/Share/VisibilityShare.php index 633ae1fe82..03ca05bde2 100644 --- a/src/Symfony/Component/Notifier/Bridge/LinkedIn/Share/VisibilityShare.php +++ b/src/Symfony/Component/Notifier/Bridge/LinkedIn/Share/VisibilityShare.php @@ -15,8 +15,6 @@ use Symfony\Component\Notifier\Exception\LogicException; /** * @author Smaïne Milianni - * - * @experimental in 5.3 */ final class VisibilityShare extends AbstractLinkedInShare { diff --git a/src/Symfony/Component/Notifier/Bridge/Mattermost/CHANGELOG.md b/src/Symfony/Component/Notifier/Bridge/Mattermost/CHANGELOG.md index 7bd5e9a57f..b1c417c0b3 100644 --- a/src/Symfony/Component/Notifier/Bridge/Mattermost/CHANGELOG.md +++ b/src/Symfony/Component/Notifier/Bridge/Mattermost/CHANGELOG.md @@ -1,6 +1,11 @@ CHANGELOG ========= +5.3.0 +----- + + * The bridge is not marked as `@experimental` anymore + 5.1.0 ----- diff --git a/src/Symfony/Component/Notifier/Bridge/Mattermost/MattermostTransport.php b/src/Symfony/Component/Notifier/Bridge/Mattermost/MattermostTransport.php index f1916342e7..59730b97f7 100644 --- a/src/Symfony/Component/Notifier/Bridge/Mattermost/MattermostTransport.php +++ b/src/Symfony/Component/Notifier/Bridge/Mattermost/MattermostTransport.php @@ -22,8 +22,6 @@ use Symfony\Contracts\HttpClient\HttpClientInterface; /** * @author Emanuele Panzeri - * - * @experimental in 5.3 */ final class MattermostTransport extends AbstractTransport { diff --git a/src/Symfony/Component/Notifier/Bridge/Mattermost/MattermostTransportFactory.php b/src/Symfony/Component/Notifier/Bridge/Mattermost/MattermostTransportFactory.php index b75e46e8a8..002c760cb7 100644 --- a/src/Symfony/Component/Notifier/Bridge/Mattermost/MattermostTransportFactory.php +++ b/src/Symfony/Component/Notifier/Bridge/Mattermost/MattermostTransportFactory.php @@ -19,8 +19,6 @@ use Symfony\Component\Notifier\Transport\TransportInterface; /** * @author Emanuele Panzeri - * - * @experimental in 5.3 */ final class MattermostTransportFactory extends AbstractTransportFactory { diff --git a/src/Symfony/Component/Notifier/Bridge/Mobyt/CHANGELOG.md b/src/Symfony/Component/Notifier/Bridge/Mobyt/CHANGELOG.md index 0d994e934e..d8e243dcb9 100644 --- a/src/Symfony/Component/Notifier/Bridge/Mobyt/CHANGELOG.md +++ b/src/Symfony/Component/Notifier/Bridge/Mobyt/CHANGELOG.md @@ -1,6 +1,11 @@ CHANGELOG ========= +5.3.0 +----- + + * The bridge is not marked as `@experimental` anymore + 5.2.0 ----- diff --git a/src/Symfony/Component/Notifier/Bridge/Mobyt/MobytOptions.php b/src/Symfony/Component/Notifier/Bridge/Mobyt/MobytOptions.php index c0d760ac0d..695e50fe87 100644 --- a/src/Symfony/Component/Notifier/Bridge/Mobyt/MobytOptions.php +++ b/src/Symfony/Component/Notifier/Bridge/Mobyt/MobytOptions.php @@ -16,8 +16,6 @@ use Symfony\Component\Notifier\Notification\Notification; /** * @author Bastien Durand - * - * @experimental in 5.3 */ final class MobytOptions implements MessageOptionsInterface { diff --git a/src/Symfony/Component/Notifier/Bridge/Mobyt/MobytTransport.php b/src/Symfony/Component/Notifier/Bridge/Mobyt/MobytTransport.php index 98eff8730d..4e2ec1d943 100644 --- a/src/Symfony/Component/Notifier/Bridge/Mobyt/MobytTransport.php +++ b/src/Symfony/Component/Notifier/Bridge/Mobyt/MobytTransport.php @@ -23,8 +23,6 @@ use Symfony\Contracts\HttpClient\HttpClientInterface; /** * @author Basien Durand - * - * @experimental in 5.3 */ final class MobytTransport extends AbstractTransport { diff --git a/src/Symfony/Component/Notifier/Bridge/Mobyt/MobytTransportFactory.php b/src/Symfony/Component/Notifier/Bridge/Mobyt/MobytTransportFactory.php index c7c3a9fae0..955fefd63d 100644 --- a/src/Symfony/Component/Notifier/Bridge/Mobyt/MobytTransportFactory.php +++ b/src/Symfony/Component/Notifier/Bridge/Mobyt/MobytTransportFactory.php @@ -19,8 +19,6 @@ use Symfony\Component\Notifier\Transport\TransportInterface; /** * @author Bastien Durand - * - * @experimental in 5.3 */ final class MobytTransportFactory extends AbstractTransportFactory { diff --git a/src/Symfony/Component/Notifier/Bridge/Nexmo/CHANGELOG.md b/src/Symfony/Component/Notifier/Bridge/Nexmo/CHANGELOG.md index 10f7e1ea85..a807785c30 100644 --- a/src/Symfony/Component/Notifier/Bridge/Nexmo/CHANGELOG.md +++ b/src/Symfony/Component/Notifier/Bridge/Nexmo/CHANGELOG.md @@ -1,6 +1,11 @@ CHANGELOG ========= +5.3.0 +----- + + * The bridge is not marked as `@experimental` anymore + 5.0.0 ----- diff --git a/src/Symfony/Component/Notifier/Bridge/Nexmo/NexmoTransport.php b/src/Symfony/Component/Notifier/Bridge/Nexmo/NexmoTransport.php index e2fafe17bc..25dcb991d9 100644 --- a/src/Symfony/Component/Notifier/Bridge/Nexmo/NexmoTransport.php +++ b/src/Symfony/Component/Notifier/Bridge/Nexmo/NexmoTransport.php @@ -22,8 +22,6 @@ use Symfony\Contracts\HttpClient\HttpClientInterface; /** * @author Fabien Potencier - * - * @experimental in 5.3 */ final class NexmoTransport extends AbstractTransport { diff --git a/src/Symfony/Component/Notifier/Bridge/Nexmo/NexmoTransportFactory.php b/src/Symfony/Component/Notifier/Bridge/Nexmo/NexmoTransportFactory.php index 558f352377..3095550d39 100644 --- a/src/Symfony/Component/Notifier/Bridge/Nexmo/NexmoTransportFactory.php +++ b/src/Symfony/Component/Notifier/Bridge/Nexmo/NexmoTransportFactory.php @@ -19,8 +19,6 @@ use Symfony\Component\Notifier\Transport\TransportInterface; /** * @author Fabien Potencier - * - * @experimental in 5.3 */ final class NexmoTransportFactory extends AbstractTransportFactory { diff --git a/src/Symfony/Component/Notifier/Bridge/OvhCloud/CHANGELOG.md b/src/Symfony/Component/Notifier/Bridge/OvhCloud/CHANGELOG.md index 7bd5e9a57f..b1c417c0b3 100644 --- a/src/Symfony/Component/Notifier/Bridge/OvhCloud/CHANGELOG.md +++ b/src/Symfony/Component/Notifier/Bridge/OvhCloud/CHANGELOG.md @@ -1,6 +1,11 @@ CHANGELOG ========= +5.3.0 +----- + + * The bridge is not marked as `@experimental` anymore + 5.1.0 ----- diff --git a/src/Symfony/Component/Notifier/Bridge/OvhCloud/OvhCloudTransport.php b/src/Symfony/Component/Notifier/Bridge/OvhCloud/OvhCloudTransport.php index 6698b28cd9..614b3eef7c 100644 --- a/src/Symfony/Component/Notifier/Bridge/OvhCloud/OvhCloudTransport.php +++ b/src/Symfony/Component/Notifier/Bridge/OvhCloud/OvhCloudTransport.php @@ -22,8 +22,6 @@ use Symfony\Contracts\HttpClient\HttpClientInterface; /** * @author Thomas Ferney - * - * @experimental in 5.3 */ final class OvhCloudTransport extends AbstractTransport { diff --git a/src/Symfony/Component/Notifier/Bridge/OvhCloud/OvhCloudTransportFactory.php b/src/Symfony/Component/Notifier/Bridge/OvhCloud/OvhCloudTransportFactory.php index 66f00a9979..6fa9e1626e 100644 --- a/src/Symfony/Component/Notifier/Bridge/OvhCloud/OvhCloudTransportFactory.php +++ b/src/Symfony/Component/Notifier/Bridge/OvhCloud/OvhCloudTransportFactory.php @@ -19,8 +19,6 @@ use Symfony\Component\Notifier\Transport\TransportInterface; /** * @author Thomas Ferney - * - * @experimental in 5.3 */ final class OvhCloudTransportFactory extends AbstractTransportFactory { diff --git a/src/Symfony/Component/Notifier/Bridge/RocketChat/CHANGELOG.md b/src/Symfony/Component/Notifier/Bridge/RocketChat/CHANGELOG.md index 7bd5e9a57f..b1c417c0b3 100644 --- a/src/Symfony/Component/Notifier/Bridge/RocketChat/CHANGELOG.md +++ b/src/Symfony/Component/Notifier/Bridge/RocketChat/CHANGELOG.md @@ -1,6 +1,11 @@ CHANGELOG ========= +5.3.0 +----- + + * The bridge is not marked as `@experimental` anymore + 5.1.0 ----- diff --git a/src/Symfony/Component/Notifier/Bridge/RocketChat/RocketChatOptions.php b/src/Symfony/Component/Notifier/Bridge/RocketChat/RocketChatOptions.php index e70f74ca8c..d7f5d63bfb 100644 --- a/src/Symfony/Component/Notifier/Bridge/RocketChat/RocketChatOptions.php +++ b/src/Symfony/Component/Notifier/Bridge/RocketChat/RocketChatOptions.php @@ -16,8 +16,6 @@ use Symfony\Component\Notifier\Message\MessageOptionsInterface; /** * @author Jeroen Spee * - * @experimental in 5.3 - * * @see https://rocket.chat/docs/administrator-guides/integrations/ */ final class RocketChatOptions implements MessageOptionsInterface diff --git a/src/Symfony/Component/Notifier/Bridge/RocketChat/RocketChatTransport.php b/src/Symfony/Component/Notifier/Bridge/RocketChat/RocketChatTransport.php index 2f6302a049..abd8ce6b86 100644 --- a/src/Symfony/Component/Notifier/Bridge/RocketChat/RocketChatTransport.php +++ b/src/Symfony/Component/Notifier/Bridge/RocketChat/RocketChatTransport.php @@ -23,8 +23,6 @@ use Symfony\Contracts\HttpClient\HttpClientInterface; /** * @author Jeroen Spee - * - * @experimental in 5.3 */ final class RocketChatTransport extends AbstractTransport { diff --git a/src/Symfony/Component/Notifier/Bridge/RocketChat/RocketChatTransportFactory.php b/src/Symfony/Component/Notifier/Bridge/RocketChat/RocketChatTransportFactory.php index 1600819777..abba7062ba 100644 --- a/src/Symfony/Component/Notifier/Bridge/RocketChat/RocketChatTransportFactory.php +++ b/src/Symfony/Component/Notifier/Bridge/RocketChat/RocketChatTransportFactory.php @@ -18,8 +18,6 @@ use Symfony\Component\Notifier\Transport\TransportInterface; /** * @author Jeroen Spee - * - * @experimental in 5.3 */ final class RocketChatTransportFactory extends AbstractTransportFactory { diff --git a/src/Symfony/Component/Notifier/Bridge/Sendinblue/CHANGELOG.md b/src/Symfony/Component/Notifier/Bridge/Sendinblue/CHANGELOG.md index 0d994e934e..d8e243dcb9 100644 --- a/src/Symfony/Component/Notifier/Bridge/Sendinblue/CHANGELOG.md +++ b/src/Symfony/Component/Notifier/Bridge/Sendinblue/CHANGELOG.md @@ -1,6 +1,11 @@ CHANGELOG ========= +5.3.0 +----- + + * The bridge is not marked as `@experimental` anymore + 5.2.0 ----- diff --git a/src/Symfony/Component/Notifier/Bridge/Sendinblue/SendinblueTransport.php b/src/Symfony/Component/Notifier/Bridge/Sendinblue/SendinblueTransport.php index 429fda4c79..0e5994ae31 100644 --- a/src/Symfony/Component/Notifier/Bridge/Sendinblue/SendinblueTransport.php +++ b/src/Symfony/Component/Notifier/Bridge/Sendinblue/SendinblueTransport.php @@ -22,8 +22,6 @@ use Symfony\Contracts\HttpClient\HttpClientInterface; /** * @author Pierre Tondereau - * - * @experimental in 5.3 */ final class SendinblueTransport extends AbstractTransport { diff --git a/src/Symfony/Component/Notifier/Bridge/Sendinblue/SendinblueTransportFactory.php b/src/Symfony/Component/Notifier/Bridge/Sendinblue/SendinblueTransportFactory.php index a5e6c963b0..e36b3f2e3e 100644 --- a/src/Symfony/Component/Notifier/Bridge/Sendinblue/SendinblueTransportFactory.php +++ b/src/Symfony/Component/Notifier/Bridge/Sendinblue/SendinblueTransportFactory.php @@ -19,8 +19,6 @@ use Symfony\Component\Notifier\Transport\TransportInterface; /** * @author Pierre Tondereau - * - * @experimental in 5.3 */ final class SendinblueTransportFactory extends AbstractTransportFactory { diff --git a/src/Symfony/Component/Notifier/Bridge/Sinch/CHANGELOG.md b/src/Symfony/Component/Notifier/Bridge/Sinch/CHANGELOG.md index abf66cd8ca..a2c4e84b43 100644 --- a/src/Symfony/Component/Notifier/Bridge/Sinch/CHANGELOG.md +++ b/src/Symfony/Component/Notifier/Bridge/Sinch/CHANGELOG.md @@ -1,6 +1,11 @@ CHANGELOG ========= +5.3.0 +----- + + * The bridge is not marked as `@experimental` anymore + 5.1 ----- diff --git a/src/Symfony/Component/Notifier/Bridge/Sinch/SinchTransport.php b/src/Symfony/Component/Notifier/Bridge/Sinch/SinchTransport.php index 7a6aace647..55ff922db4 100644 --- a/src/Symfony/Component/Notifier/Bridge/Sinch/SinchTransport.php +++ b/src/Symfony/Component/Notifier/Bridge/Sinch/SinchTransport.php @@ -22,8 +22,6 @@ use Symfony\Contracts\HttpClient\HttpClientInterface; /** * @author Iliya Miroslavov Iliev - * - * @experimental in 5.3 */ final class SinchTransport extends AbstractTransport { diff --git a/src/Symfony/Component/Notifier/Bridge/Sinch/SinchTransportFactory.php b/src/Symfony/Component/Notifier/Bridge/Sinch/SinchTransportFactory.php index 795b00a48d..1ef55d6ec9 100644 --- a/src/Symfony/Component/Notifier/Bridge/Sinch/SinchTransportFactory.php +++ b/src/Symfony/Component/Notifier/Bridge/Sinch/SinchTransportFactory.php @@ -19,8 +19,6 @@ use Symfony\Component\Notifier\Transport\TransportInterface; /** * @author Iliya Miroslavov Iliev - * - * @experimental in 5.3 */ final class SinchTransportFactory extends AbstractTransportFactory { diff --git a/src/Symfony/Component/Notifier/Bridge/Slack/Block/SlackHeaderBlock.php b/src/Symfony/Component/Notifier/Bridge/Slack/Block/SlackHeaderBlock.php index 5a4d4189ca..bbcb19e7ed 100644 --- a/src/Symfony/Component/Notifier/Bridge/Slack/Block/SlackHeaderBlock.php +++ b/src/Symfony/Component/Notifier/Bridge/Slack/Block/SlackHeaderBlock.php @@ -15,8 +15,6 @@ use Symfony\Component\Notifier\Exception\LengthException; /** * @author Tomas Norkūnas - * - * @experimental in 5.3 */ final class SlackHeaderBlock extends AbstractSlackBlock { diff --git a/src/Symfony/Component/Notifier/Bridge/Slack/CHANGELOG.md b/src/Symfony/Component/Notifier/Bridge/Slack/CHANGELOG.md index 650a09bc1e..c6384e85cf 100644 --- a/src/Symfony/Component/Notifier/Bridge/Slack/CHANGELOG.md +++ b/src/Symfony/Component/Notifier/Bridge/Slack/CHANGELOG.md @@ -4,6 +4,7 @@ CHANGELOG 5.3.0 ----- + * The bridge is not marked as `@experimental` anymore * Check for maximum number of buttons in Slack action block * Add HeaderBlock diff --git a/src/Symfony/Component/Notifier/Bridge/Slack/SlackOptions.php b/src/Symfony/Component/Notifier/Bridge/Slack/SlackOptions.php index 6b697aede5..eb75fea5cb 100644 --- a/src/Symfony/Component/Notifier/Bridge/Slack/SlackOptions.php +++ b/src/Symfony/Component/Notifier/Bridge/Slack/SlackOptions.php @@ -19,8 +19,6 @@ use Symfony\Component\Notifier\Notification\Notification; /** * @author Fabien Potencier - * - * @experimental in 5.3 */ final class SlackOptions implements MessageOptionsInterface { diff --git a/src/Symfony/Component/Notifier/Bridge/Slack/SlackTransport.php b/src/Symfony/Component/Notifier/Bridge/Slack/SlackTransport.php index dba8210050..fedc1b648a 100644 --- a/src/Symfony/Component/Notifier/Bridge/Slack/SlackTransport.php +++ b/src/Symfony/Component/Notifier/Bridge/Slack/SlackTransport.php @@ -23,8 +23,6 @@ use Symfony\Contracts\HttpClient\HttpClientInterface; /** * @author Fabien Potencier - * - * @experimental in 5.3 */ final class SlackTransport extends AbstractTransport { diff --git a/src/Symfony/Component/Notifier/Bridge/Slack/SlackTransportFactory.php b/src/Symfony/Component/Notifier/Bridge/Slack/SlackTransportFactory.php index 7750d2f628..ea724d0003 100644 --- a/src/Symfony/Component/Notifier/Bridge/Slack/SlackTransportFactory.php +++ b/src/Symfony/Component/Notifier/Bridge/Slack/SlackTransportFactory.php @@ -19,8 +19,6 @@ use Symfony\Component\Notifier\Transport\TransportInterface; /** * @author Fabien Potencier - * - * @experimental in 5.3 */ final class SlackTransportFactory extends AbstractTransportFactory { diff --git a/src/Symfony/Component/Notifier/Bridge/Smsapi/SmsapiTransport.php b/src/Symfony/Component/Notifier/Bridge/Smsapi/SmsapiTransport.php index 0451fe768e..79df322bf1 100644 --- a/src/Symfony/Component/Notifier/Bridge/Smsapi/SmsapiTransport.php +++ b/src/Symfony/Component/Notifier/Bridge/Smsapi/SmsapiTransport.php @@ -22,7 +22,6 @@ use Symfony\Contracts\HttpClient\HttpClientInterface; /** * @author Marcin Szepczynski - * @experimental in 5.3 */ final class SmsapiTransport extends AbstractTransport { diff --git a/src/Symfony/Component/Notifier/Bridge/Smsapi/SmsapiTransportFactory.php b/src/Symfony/Component/Notifier/Bridge/Smsapi/SmsapiTransportFactory.php index 69d67af4d6..5ce2562320 100644 --- a/src/Symfony/Component/Notifier/Bridge/Smsapi/SmsapiTransportFactory.php +++ b/src/Symfony/Component/Notifier/Bridge/Smsapi/SmsapiTransportFactory.php @@ -19,7 +19,6 @@ use Symfony\Component\Notifier\Transport\TransportInterface; /** * @author Marcin Szepczynski - * @experimental in 5.3 */ class SmsapiTransportFactory extends AbstractTransportFactory { diff --git a/src/Symfony/Component/Notifier/Bridge/Telegram/CHANGELOG.md b/src/Symfony/Component/Notifier/Bridge/Telegram/CHANGELOG.md index 10f7e1ea85..a807785c30 100644 --- a/src/Symfony/Component/Notifier/Bridge/Telegram/CHANGELOG.md +++ b/src/Symfony/Component/Notifier/Bridge/Telegram/CHANGELOG.md @@ -1,6 +1,11 @@ CHANGELOG ========= +5.3.0 +----- + + * The bridge is not marked as `@experimental` anymore + 5.0.0 ----- diff --git a/src/Symfony/Component/Notifier/Bridge/Telegram/Reply/Markup/AbstractTelegramReplyMarkup.php b/src/Symfony/Component/Notifier/Bridge/Telegram/Reply/Markup/AbstractTelegramReplyMarkup.php index 10a9154001..8bf4bb0cd3 100644 --- a/src/Symfony/Component/Notifier/Bridge/Telegram/Reply/Markup/AbstractTelegramReplyMarkup.php +++ b/src/Symfony/Component/Notifier/Bridge/Telegram/Reply/Markup/AbstractTelegramReplyMarkup.php @@ -13,8 +13,6 @@ namespace Symfony\Component\Notifier\Bridge\Telegram\Reply\Markup; /** * @author Mihail Krasilnikov - * - * @experimental in 5.3 */ abstract class AbstractTelegramReplyMarkup { diff --git a/src/Symfony/Component/Notifier/Bridge/Telegram/Reply/Markup/Button/AbstractKeyboardButton.php b/src/Symfony/Component/Notifier/Bridge/Telegram/Reply/Markup/Button/AbstractKeyboardButton.php index b5b87f75ca..03d05ab4f4 100644 --- a/src/Symfony/Component/Notifier/Bridge/Telegram/Reply/Markup/Button/AbstractKeyboardButton.php +++ b/src/Symfony/Component/Notifier/Bridge/Telegram/Reply/Markup/Button/AbstractKeyboardButton.php @@ -13,8 +13,6 @@ namespace Symfony\Component\Notifier\Bridge\Telegram\Reply\Markup\Button; /** * @author Mihail Krasilnikov - * - * @experimental in 5.3 */ abstract class AbstractKeyboardButton { diff --git a/src/Symfony/Component/Notifier/Bridge/Telegram/Reply/Markup/Button/InlineKeyboardButton.php b/src/Symfony/Component/Notifier/Bridge/Telegram/Reply/Markup/Button/InlineKeyboardButton.php index b5cf6b3fd8..89e4c4f1ec 100644 --- a/src/Symfony/Component/Notifier/Bridge/Telegram/Reply/Markup/Button/InlineKeyboardButton.php +++ b/src/Symfony/Component/Notifier/Bridge/Telegram/Reply/Markup/Button/InlineKeyboardButton.php @@ -15,8 +15,6 @@ namespace Symfony\Component\Notifier\Bridge\Telegram\Reply\Markup\Button; * @author Mihail Krasilnikov * * @see https://core.telegram.org/bots/api#inlinekeyboardbutton - * - * @experimental in 5.3 */ final class InlineKeyboardButton extends AbstractKeyboardButton { diff --git a/src/Symfony/Component/Notifier/Bridge/Telegram/Reply/Markup/Button/KeyboardButton.php b/src/Symfony/Component/Notifier/Bridge/Telegram/Reply/Markup/Button/KeyboardButton.php index 15359af302..3e8240baa2 100644 --- a/src/Symfony/Component/Notifier/Bridge/Telegram/Reply/Markup/Button/KeyboardButton.php +++ b/src/Symfony/Component/Notifier/Bridge/Telegram/Reply/Markup/Button/KeyboardButton.php @@ -15,8 +15,6 @@ namespace Symfony\Component\Notifier\Bridge\Telegram\Reply\Markup\Button; * @author Mihail Krasilnikov * * @see https://core.telegram.org/bots/api#keyboardbutton - * - * @experimental in 5.3 */ final class KeyboardButton extends AbstractKeyboardButton { diff --git a/src/Symfony/Component/Notifier/Bridge/Telegram/Reply/Markup/ForceReply.php b/src/Symfony/Component/Notifier/Bridge/Telegram/Reply/Markup/ForceReply.php index b6dc92317f..63779c4165 100644 --- a/src/Symfony/Component/Notifier/Bridge/Telegram/Reply/Markup/ForceReply.php +++ b/src/Symfony/Component/Notifier/Bridge/Telegram/Reply/Markup/ForceReply.php @@ -15,8 +15,6 @@ namespace Symfony\Component\Notifier\Bridge\Telegram\Reply\Markup; * @author Mihail Krasilnikov * * @see https://core.telegram.org/bots/api#forcereply - * - * @experimental in 5.3 */ final class ForceReply extends AbstractTelegramReplyMarkup { diff --git a/src/Symfony/Component/Notifier/Bridge/Telegram/Reply/Markup/InlineKeyboardMarkup.php b/src/Symfony/Component/Notifier/Bridge/Telegram/Reply/Markup/InlineKeyboardMarkup.php index 00a80183be..c7cc371ea7 100644 --- a/src/Symfony/Component/Notifier/Bridge/Telegram/Reply/Markup/InlineKeyboardMarkup.php +++ b/src/Symfony/Component/Notifier/Bridge/Telegram/Reply/Markup/InlineKeyboardMarkup.php @@ -17,8 +17,6 @@ use Symfony\Component\Notifier\Bridge\Telegram\Reply\Markup\Button\InlineKeyboar * @author Mihail Krasilnikov * * @see https://core.telegram.org/bots/api#inlinekeyboardmarkup - * - * @experimental in 5.3 */ final class InlineKeyboardMarkup extends AbstractTelegramReplyMarkup { diff --git a/src/Symfony/Component/Notifier/Bridge/Telegram/Reply/Markup/ReplyKeyboardMarkup.php b/src/Symfony/Component/Notifier/Bridge/Telegram/Reply/Markup/ReplyKeyboardMarkup.php index 6767707624..a5b8ef600d 100644 --- a/src/Symfony/Component/Notifier/Bridge/Telegram/Reply/Markup/ReplyKeyboardMarkup.php +++ b/src/Symfony/Component/Notifier/Bridge/Telegram/Reply/Markup/ReplyKeyboardMarkup.php @@ -17,8 +17,6 @@ use Symfony\Component\Notifier\Bridge\Telegram\Reply\Markup\Button\KeyboardButto * @author Mihail Krasilnikov * * @see https://core.telegram.org/bots/api#replykeyboardmarkup - * - * @experimental in 5.3 */ final class ReplyKeyboardMarkup extends AbstractTelegramReplyMarkup { diff --git a/src/Symfony/Component/Notifier/Bridge/Telegram/Reply/Markup/ReplyKeyboardRemove.php b/src/Symfony/Component/Notifier/Bridge/Telegram/Reply/Markup/ReplyKeyboardRemove.php index b0619f3597..b4a2daee10 100644 --- a/src/Symfony/Component/Notifier/Bridge/Telegram/Reply/Markup/ReplyKeyboardRemove.php +++ b/src/Symfony/Component/Notifier/Bridge/Telegram/Reply/Markup/ReplyKeyboardRemove.php @@ -15,8 +15,6 @@ namespace Symfony\Component\Notifier\Bridge\Telegram\Reply\Markup; * @author Mihail Krasilnikov * * @see https://core.telegram.org/bots/api#replykeyboardremove - * - * @experimental in 5.3 */ final class ReplyKeyboardRemove extends AbstractTelegramReplyMarkup { diff --git a/src/Symfony/Component/Notifier/Bridge/Telegram/TelegramOptions.php b/src/Symfony/Component/Notifier/Bridge/Telegram/TelegramOptions.php index bb7932c1c9..9794d8744e 100644 --- a/src/Symfony/Component/Notifier/Bridge/Telegram/TelegramOptions.php +++ b/src/Symfony/Component/Notifier/Bridge/Telegram/TelegramOptions.php @@ -16,8 +16,6 @@ use Symfony\Component\Notifier\Message\MessageOptionsInterface; /** * @author Mihail Krasilnikov - * - * @experimental in 5.3 */ final class TelegramOptions implements MessageOptionsInterface { diff --git a/src/Symfony/Component/Notifier/Bridge/Telegram/TelegramTransport.php b/src/Symfony/Component/Notifier/Bridge/Telegram/TelegramTransport.php index 33b182b31b..a31a394c51 100644 --- a/src/Symfony/Component/Notifier/Bridge/Telegram/TelegramTransport.php +++ b/src/Symfony/Component/Notifier/Bridge/Telegram/TelegramTransport.php @@ -27,8 +27,6 @@ use Symfony\Contracts\HttpClient\HttpClientInterface; * command. * * @author Fabien Potencier - * - * @experimental in 5.3 */ final class TelegramTransport extends AbstractTransport { diff --git a/src/Symfony/Component/Notifier/Bridge/Telegram/TelegramTransportFactory.php b/src/Symfony/Component/Notifier/Bridge/Telegram/TelegramTransportFactory.php index 025a594ff8..490fe1d26e 100644 --- a/src/Symfony/Component/Notifier/Bridge/Telegram/TelegramTransportFactory.php +++ b/src/Symfony/Component/Notifier/Bridge/Telegram/TelegramTransportFactory.php @@ -19,8 +19,6 @@ use Symfony\Component\Notifier\Transport\TransportInterface; /** * @author Fabien Potencier - * - * @experimental in 5.3 */ final class TelegramTransportFactory extends AbstractTransportFactory { diff --git a/src/Symfony/Component/Notifier/Bridge/Twilio/CHANGELOG.md b/src/Symfony/Component/Notifier/Bridge/Twilio/CHANGELOG.md index 10f7e1ea85..a807785c30 100644 --- a/src/Symfony/Component/Notifier/Bridge/Twilio/CHANGELOG.md +++ b/src/Symfony/Component/Notifier/Bridge/Twilio/CHANGELOG.md @@ -1,6 +1,11 @@ CHANGELOG ========= +5.3.0 +----- + + * The bridge is not marked as `@experimental` anymore + 5.0.0 ----- diff --git a/src/Symfony/Component/Notifier/Bridge/Twilio/TwilioTransport.php b/src/Symfony/Component/Notifier/Bridge/Twilio/TwilioTransport.php index db16fe5e63..f7d7f186eb 100644 --- a/src/Symfony/Component/Notifier/Bridge/Twilio/TwilioTransport.php +++ b/src/Symfony/Component/Notifier/Bridge/Twilio/TwilioTransport.php @@ -22,8 +22,6 @@ use Symfony\Contracts\HttpClient\HttpClientInterface; /** * @author Fabien Potencier - * - * @experimental in 5.3 */ final class TwilioTransport extends AbstractTransport { diff --git a/src/Symfony/Component/Notifier/Bridge/Twilio/TwilioTransportFactory.php b/src/Symfony/Component/Notifier/Bridge/Twilio/TwilioTransportFactory.php index 659cd6c288..bda4b5c5ee 100644 --- a/src/Symfony/Component/Notifier/Bridge/Twilio/TwilioTransportFactory.php +++ b/src/Symfony/Component/Notifier/Bridge/Twilio/TwilioTransportFactory.php @@ -19,8 +19,6 @@ use Symfony\Component\Notifier\Transport\TransportInterface; /** * @author Fabien Potencier - * - * @experimental in 5.3 */ final class TwilioTransportFactory extends AbstractTransportFactory { diff --git a/src/Symfony/Component/Notifier/Bridge/Zulip/CHANGELOG.md b/src/Symfony/Component/Notifier/Bridge/Zulip/CHANGELOG.md index 0d994e934e..d8e243dcb9 100644 --- a/src/Symfony/Component/Notifier/Bridge/Zulip/CHANGELOG.md +++ b/src/Symfony/Component/Notifier/Bridge/Zulip/CHANGELOG.md @@ -1,6 +1,11 @@ CHANGELOG ========= +5.3.0 +----- + + * The bridge is not marked as `@experimental` anymore + 5.2.0 ----- diff --git a/src/Symfony/Component/Notifier/Bridge/Zulip/ZulipOptions.php b/src/Symfony/Component/Notifier/Bridge/Zulip/ZulipOptions.php index 4391544dc9..49059384fc 100644 --- a/src/Symfony/Component/Notifier/Bridge/Zulip/ZulipOptions.php +++ b/src/Symfony/Component/Notifier/Bridge/Zulip/ZulipOptions.php @@ -15,8 +15,6 @@ use Symfony\Component\Notifier\Message\MessageOptionsInterface; /** * @author Mohammad Emran Hasan - * - * @experimental in 5.3 */ final class ZulipOptions implements MessageOptionsInterface { diff --git a/src/Symfony/Component/Notifier/Bridge/Zulip/ZulipTransport.php b/src/Symfony/Component/Notifier/Bridge/Zulip/ZulipTransport.php index b6683179d2..32102dc834 100644 --- a/src/Symfony/Component/Notifier/Bridge/Zulip/ZulipTransport.php +++ b/src/Symfony/Component/Notifier/Bridge/Zulip/ZulipTransport.php @@ -23,8 +23,6 @@ use Symfony\Contracts\HttpClient\HttpClientInterface; /** * @author Mohammad Emran Hasan - * - * @experimental in 5.3 */ class ZulipTransport extends AbstractTransport { diff --git a/src/Symfony/Component/Notifier/Bridge/Zulip/ZulipTransportFactory.php b/src/Symfony/Component/Notifier/Bridge/Zulip/ZulipTransportFactory.php index a4af57ee07..9ea1ec66a9 100644 --- a/src/Symfony/Component/Notifier/Bridge/Zulip/ZulipTransportFactory.php +++ b/src/Symfony/Component/Notifier/Bridge/Zulip/ZulipTransportFactory.php @@ -19,8 +19,6 @@ use Symfony\Component\Notifier\Transport\TransportInterface; /** * @author Mohammad Emran Hasan - * - * @experimental in 5.3 */ class ZulipTransportFactory extends AbstractTransportFactory { diff --git a/src/Symfony/Component/Notifier/CHANGELOG.md b/src/Symfony/Component/Notifier/CHANGELOG.md index adb97747a6..528aa24018 100644 --- a/src/Symfony/Component/Notifier/CHANGELOG.md +++ b/src/Symfony/Component/Notifier/CHANGELOG.md @@ -1,6 +1,11 @@ CHANGELOG ========= +5.3.0 +----- + + * The component is not marked as `@experimental` anymore + 5.2.0 ----- diff --git a/src/Symfony/Component/Notifier/Channel/AbstractChannel.php b/src/Symfony/Component/Notifier/Channel/AbstractChannel.php index b6c6d0c54b..a83a51da41 100644 --- a/src/Symfony/Component/Notifier/Channel/AbstractChannel.php +++ b/src/Symfony/Component/Notifier/Channel/AbstractChannel.php @@ -17,8 +17,6 @@ use Symfony\Component\Notifier\Transport\TransportInterface; /** * @author Fabien Potencier - * - * @experimental in 5.3 */ abstract class AbstractChannel implements ChannelInterface { diff --git a/src/Symfony/Component/Notifier/Channel/BrowserChannel.php b/src/Symfony/Component/Notifier/Channel/BrowserChannel.php index 715c872044..0201e0f138 100644 --- a/src/Symfony/Component/Notifier/Channel/BrowserChannel.php +++ b/src/Symfony/Component/Notifier/Channel/BrowserChannel.php @@ -17,8 +17,6 @@ use Symfony\Component\Notifier\Recipient\RecipientInterface; /** * @author Fabien Potencier - * - * @experimental in 5.3 */ final class BrowserChannel implements ChannelInterface { diff --git a/src/Symfony/Component/Notifier/Channel/ChannelInterface.php b/src/Symfony/Component/Notifier/Channel/ChannelInterface.php index 48a0228134..ab3115230d 100644 --- a/src/Symfony/Component/Notifier/Channel/ChannelInterface.php +++ b/src/Symfony/Component/Notifier/Channel/ChannelInterface.php @@ -16,8 +16,6 @@ use Symfony\Component\Notifier\Recipient\RecipientInterface; /** * @author Fabien Potencier - * - * @experimental in 5.3 */ interface ChannelInterface { diff --git a/src/Symfony/Component/Notifier/Channel/ChannelPolicy.php b/src/Symfony/Component/Notifier/Channel/ChannelPolicy.php index 2d0c0eb0af..b333950183 100644 --- a/src/Symfony/Component/Notifier/Channel/ChannelPolicy.php +++ b/src/Symfony/Component/Notifier/Channel/ChannelPolicy.php @@ -15,8 +15,6 @@ use Symfony\Component\Notifier\Exception\InvalidArgumentException; /** * @author Fabien Potencier - * - * @experimental in 5.3 */ final class ChannelPolicy implements ChannelPolicyInterface { diff --git a/src/Symfony/Component/Notifier/Channel/ChannelPolicyInterface.php b/src/Symfony/Component/Notifier/Channel/ChannelPolicyInterface.php index 792176853e..df236d229c 100644 --- a/src/Symfony/Component/Notifier/Channel/ChannelPolicyInterface.php +++ b/src/Symfony/Component/Notifier/Channel/ChannelPolicyInterface.php @@ -13,8 +13,6 @@ namespace Symfony\Component\Notifier\Channel; /** * @author Fabien Potencier - * - * @experimental in 5.3 */ interface ChannelPolicyInterface { diff --git a/src/Symfony/Component/Notifier/Channel/ChatChannel.php b/src/Symfony/Component/Notifier/Channel/ChatChannel.php index 61c3c91f48..ea41c2e4fa 100644 --- a/src/Symfony/Component/Notifier/Channel/ChatChannel.php +++ b/src/Symfony/Component/Notifier/Channel/ChatChannel.php @@ -18,8 +18,6 @@ use Symfony\Component\Notifier\Recipient\RecipientInterface; /** * @author Fabien Potencier - * - * @experimental in 5.3 */ class ChatChannel extends AbstractChannel { diff --git a/src/Symfony/Component/Notifier/Channel/EmailChannel.php b/src/Symfony/Component/Notifier/Channel/EmailChannel.php index 4f22b1b04d..691cdc5de6 100644 --- a/src/Symfony/Component/Notifier/Channel/EmailChannel.php +++ b/src/Symfony/Component/Notifier/Channel/EmailChannel.php @@ -25,8 +25,6 @@ use Symfony\Component\Notifier\Recipient\RecipientInterface; /** * @author Fabien Potencier - * - * @experimental in 5.3 */ class EmailChannel implements ChannelInterface { diff --git a/src/Symfony/Component/Notifier/Channel/SmsChannel.php b/src/Symfony/Component/Notifier/Channel/SmsChannel.php index 0251c95224..ebed8010d5 100644 --- a/src/Symfony/Component/Notifier/Channel/SmsChannel.php +++ b/src/Symfony/Component/Notifier/Channel/SmsChannel.php @@ -19,8 +19,6 @@ use Symfony\Component\Notifier\Recipient\SmsRecipientInterface; /** * @author Fabien Potencier - * - * @experimental in 5.3 */ class SmsChannel extends AbstractChannel { diff --git a/src/Symfony/Component/Notifier/Chatter.php b/src/Symfony/Component/Notifier/Chatter.php index efbf9538df..7b3c9d566e 100644 --- a/src/Symfony/Component/Notifier/Chatter.php +++ b/src/Symfony/Component/Notifier/Chatter.php @@ -22,8 +22,6 @@ use Symfony\Contracts\EventDispatcher\EventDispatcherInterface; /** * @author Fabien Potencier - * - * @experimental in 5.3 */ final class Chatter implements ChatterInterface { diff --git a/src/Symfony/Component/Notifier/ChatterInterface.php b/src/Symfony/Component/Notifier/ChatterInterface.php index 4519821edc..915190e623 100644 --- a/src/Symfony/Component/Notifier/ChatterInterface.php +++ b/src/Symfony/Component/Notifier/ChatterInterface.php @@ -17,8 +17,6 @@ use Symfony\Component\Notifier\Transport\TransportInterface; * Interface for classes able to send chat messages synchronous and/or asynchronous. * * @author Fabien Potencier - * - * @experimental in 5.3 */ interface ChatterInterface extends TransportInterface { diff --git a/src/Symfony/Component/Notifier/DataCollector/NotificationDataCollector.php b/src/Symfony/Component/Notifier/DataCollector/NotificationDataCollector.php index a685e48694..0bd03e919b 100644 --- a/src/Symfony/Component/Notifier/DataCollector/NotificationDataCollector.php +++ b/src/Symfony/Component/Notifier/DataCollector/NotificationDataCollector.php @@ -19,8 +19,6 @@ use Symfony\Component\Notifier\EventListener\NotificationLoggerListener; /** * @author Fabien Potencier - * - * @experimental in 5.3 */ final class NotificationDataCollector extends DataCollector { diff --git a/src/Symfony/Component/Notifier/Event/MessageEvent.php b/src/Symfony/Component/Notifier/Event/MessageEvent.php index 2ab2ad8f24..2fdba8c69c 100644 --- a/src/Symfony/Component/Notifier/Event/MessageEvent.php +++ b/src/Symfony/Component/Notifier/Event/MessageEvent.php @@ -16,8 +16,6 @@ use Symfony\Contracts\EventDispatcher\Event; /** * @author Fabien Potencier - * - * @experimental in 5.3 */ final class MessageEvent extends Event { diff --git a/src/Symfony/Component/Notifier/Event/NotificationEvents.php b/src/Symfony/Component/Notifier/Event/NotificationEvents.php index b7f60e224b..19d698b61f 100644 --- a/src/Symfony/Component/Notifier/Event/NotificationEvents.php +++ b/src/Symfony/Component/Notifier/Event/NotificationEvents.php @@ -15,8 +15,6 @@ use Symfony\Component\Notifier\Message\MessageInterface; /** * @author Fabien Potencier - * - * @experimental in 5.3 */ class NotificationEvents { diff --git a/src/Symfony/Component/Notifier/EventListener/NotificationLoggerListener.php b/src/Symfony/Component/Notifier/EventListener/NotificationLoggerListener.php index 2cebd9b8a7..29d2955292 100644 --- a/src/Symfony/Component/Notifier/EventListener/NotificationLoggerListener.php +++ b/src/Symfony/Component/Notifier/EventListener/NotificationLoggerListener.php @@ -18,8 +18,6 @@ use Symfony\Contracts\Service\ResetInterface; /** * @author Fabien Potencier - * - * @experimental in 5.3 */ class NotificationLoggerListener implements EventSubscriberInterface, ResetInterface { diff --git a/src/Symfony/Component/Notifier/EventListener/SendFailedMessageToNotifierListener.php b/src/Symfony/Component/Notifier/EventListener/SendFailedMessageToNotifierListener.php index ce5a87f35c..b6807f1091 100644 --- a/src/Symfony/Component/Notifier/EventListener/SendFailedMessageToNotifierListener.php +++ b/src/Symfony/Component/Notifier/EventListener/SendFailedMessageToNotifierListener.php @@ -20,8 +20,6 @@ use Symfony\Component\Notifier\Notifier; * Sends a rejected message to the notifier. * * @author Fabien Potencier - * - * @experimental in 5.3 */ class SendFailedMessageToNotifierListener implements EventSubscriberInterface { diff --git a/src/Symfony/Component/Notifier/Exception/ExceptionInterface.php b/src/Symfony/Component/Notifier/Exception/ExceptionInterface.php index bef37cefc1..457ed61360 100644 --- a/src/Symfony/Component/Notifier/Exception/ExceptionInterface.php +++ b/src/Symfony/Component/Notifier/Exception/ExceptionInterface.php @@ -15,8 +15,6 @@ namespace Symfony\Component\Notifier\Exception; * Exception interface for all exceptions thrown by the component. * * @author Fabien Potencier - * - * @experimental in 5.3 */ interface ExceptionInterface extends \Throwable { diff --git a/src/Symfony/Component/Notifier/Exception/IncompleteDsnException.php b/src/Symfony/Component/Notifier/Exception/IncompleteDsnException.php index 8452dd6d50..55fc0438b3 100644 --- a/src/Symfony/Component/Notifier/Exception/IncompleteDsnException.php +++ b/src/Symfony/Component/Notifier/Exception/IncompleteDsnException.php @@ -13,8 +13,6 @@ namespace Symfony\Component\Notifier\Exception; /** * @author Fabien Potencier - * - * @experimental in 5.3 */ class IncompleteDsnException extends InvalidArgumentException { diff --git a/src/Symfony/Component/Notifier/Exception/InvalidArgumentException.php b/src/Symfony/Component/Notifier/Exception/InvalidArgumentException.php index 9f82bee7db..1130f8bd86 100644 --- a/src/Symfony/Component/Notifier/Exception/InvalidArgumentException.php +++ b/src/Symfony/Component/Notifier/Exception/InvalidArgumentException.php @@ -13,8 +13,6 @@ namespace Symfony\Component\Notifier\Exception; /** * @author Fabien Potencier - * - * @experimental in 5.3 */ class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface { diff --git a/src/Symfony/Component/Notifier/Exception/LengthException.php b/src/Symfony/Component/Notifier/Exception/LengthException.php index fec27f39d8..7feed7ba66 100644 --- a/src/Symfony/Component/Notifier/Exception/LengthException.php +++ b/src/Symfony/Component/Notifier/Exception/LengthException.php @@ -13,8 +13,6 @@ namespace Symfony\Component\Notifier\Exception; /** * @author Oskar Stark - * - * @experimental in 5.3 */ class LengthException extends LogicException { diff --git a/src/Symfony/Component/Notifier/Exception/LogicException.php b/src/Symfony/Component/Notifier/Exception/LogicException.php index 0919d32003..8a67897df0 100644 --- a/src/Symfony/Component/Notifier/Exception/LogicException.php +++ b/src/Symfony/Component/Notifier/Exception/LogicException.php @@ -13,8 +13,6 @@ namespace Symfony\Component\Notifier\Exception; /** * @author Fabien Potencier - * - * @experimental in 5.3 */ class LogicException extends \LogicException implements ExceptionInterface { diff --git a/src/Symfony/Component/Notifier/Exception/RuntimeException.php b/src/Symfony/Component/Notifier/Exception/RuntimeException.php index 6b91df7819..2e61a3109a 100644 --- a/src/Symfony/Component/Notifier/Exception/RuntimeException.php +++ b/src/Symfony/Component/Notifier/Exception/RuntimeException.php @@ -13,8 +13,6 @@ namespace Symfony\Component\Notifier\Exception; /** * @author Fabien Potencier - * - * @experimental in 5.3 */ class RuntimeException extends \RuntimeException implements ExceptionInterface { diff --git a/src/Symfony/Component/Notifier/Exception/TransportException.php b/src/Symfony/Component/Notifier/Exception/TransportException.php index 24ce418ad9..acf6ec7b36 100644 --- a/src/Symfony/Component/Notifier/Exception/TransportException.php +++ b/src/Symfony/Component/Notifier/Exception/TransportException.php @@ -15,8 +15,6 @@ use Symfony\Contracts\HttpClient\ResponseInterface; /** * @author Fabien Potencier - * - * @experimental in 5.3 */ class TransportException extends RuntimeException implements TransportExceptionInterface { diff --git a/src/Symfony/Component/Notifier/Exception/TransportExceptionInterface.php b/src/Symfony/Component/Notifier/Exception/TransportExceptionInterface.php index 72023e4a96..294f79bd9e 100644 --- a/src/Symfony/Component/Notifier/Exception/TransportExceptionInterface.php +++ b/src/Symfony/Component/Notifier/Exception/TransportExceptionInterface.php @@ -13,8 +13,6 @@ namespace Symfony\Component\Notifier\Exception; /** * @author Fabien Potencier - * - * @experimental in 5.3 */ interface TransportExceptionInterface extends ExceptionInterface { diff --git a/src/Symfony/Component/Notifier/Exception/UnsupportedMessageTypeException.php b/src/Symfony/Component/Notifier/Exception/UnsupportedMessageTypeException.php index d52ce21417..59207de540 100644 --- a/src/Symfony/Component/Notifier/Exception/UnsupportedMessageTypeException.php +++ b/src/Symfony/Component/Notifier/Exception/UnsupportedMessageTypeException.php @@ -15,8 +15,6 @@ use Symfony\Component\Notifier\Message\MessageInterface; /** * @author Oskar Stark - * - * @experimental in 5.3 */ class UnsupportedMessageTypeException extends LogicException { diff --git a/src/Symfony/Component/Notifier/Exception/UnsupportedSchemeException.php b/src/Symfony/Component/Notifier/Exception/UnsupportedSchemeException.php index 2ac36c47d1..ce78ee37ca 100644 --- a/src/Symfony/Component/Notifier/Exception/UnsupportedSchemeException.php +++ b/src/Symfony/Component/Notifier/Exception/UnsupportedSchemeException.php @@ -16,8 +16,6 @@ use Symfony\Component\Notifier\Transport\Dsn; /** * @author Konstantin Myakshin - * - * @experimental in 5.3 */ class UnsupportedSchemeException extends LogicException { diff --git a/src/Symfony/Component/Notifier/Message/ChatMessage.php b/src/Symfony/Component/Notifier/Message/ChatMessage.php index 082adafdad..d7c028a7c9 100644 --- a/src/Symfony/Component/Notifier/Message/ChatMessage.php +++ b/src/Symfony/Component/Notifier/Message/ChatMessage.php @@ -15,8 +15,6 @@ use Symfony\Component\Notifier\Notification\Notification; /** * @author Fabien Potencier - * - * @experimental in 5.3 */ final class ChatMessage implements MessageInterface { diff --git a/src/Symfony/Component/Notifier/Message/EmailMessage.php b/src/Symfony/Component/Notifier/Message/EmailMessage.php index 530f19c582..a41211e885 100644 --- a/src/Symfony/Component/Notifier/Message/EmailMessage.php +++ b/src/Symfony/Component/Notifier/Message/EmailMessage.php @@ -22,8 +22,6 @@ use Symfony\Component\Notifier\Recipient\EmailRecipientInterface; /** * @author Fabien Potencier - * - * @experimental in 5.3 */ final class EmailMessage implements MessageInterface { diff --git a/src/Symfony/Component/Notifier/Message/MessageInterface.php b/src/Symfony/Component/Notifier/Message/MessageInterface.php index 7fff691ed3..05c4266d93 100644 --- a/src/Symfony/Component/Notifier/Message/MessageInterface.php +++ b/src/Symfony/Component/Notifier/Message/MessageInterface.php @@ -13,8 +13,6 @@ namespace Symfony\Component\Notifier\Message; /** * @author Fabien Potencier - * - * @experimental in 5.3 */ interface MessageInterface { diff --git a/src/Symfony/Component/Notifier/Message/MessageOptionsInterface.php b/src/Symfony/Component/Notifier/Message/MessageOptionsInterface.php index 1c52a4cb9a..992a1cec96 100644 --- a/src/Symfony/Component/Notifier/Message/MessageOptionsInterface.php +++ b/src/Symfony/Component/Notifier/Message/MessageOptionsInterface.php @@ -13,8 +13,6 @@ namespace Symfony\Component\Notifier\Message; /** * @author Fabien Potencier - * - * @experimental in 5.3 */ interface MessageOptionsInterface { diff --git a/src/Symfony/Component/Notifier/Message/NullMessage.php b/src/Symfony/Component/Notifier/Message/NullMessage.php index 8cda1603aa..b6fd6696d1 100644 --- a/src/Symfony/Component/Notifier/Message/NullMessage.php +++ b/src/Symfony/Component/Notifier/Message/NullMessage.php @@ -13,8 +13,6 @@ namespace Symfony\Component\Notifier\Message; /** * @author Jan Schädlich - * - * @experimental in 5.3 */ final class NullMessage implements MessageInterface { diff --git a/src/Symfony/Component/Notifier/Message/SentMessage.php b/src/Symfony/Component/Notifier/Message/SentMessage.php index 852b70375f..91343d7e42 100644 --- a/src/Symfony/Component/Notifier/Message/SentMessage.php +++ b/src/Symfony/Component/Notifier/Message/SentMessage.php @@ -13,8 +13,6 @@ namespace Symfony\Component\Notifier\Message; /** * @author Jérémy Romey - * - * @experimental in 5.3 */ final class SentMessage { diff --git a/src/Symfony/Component/Notifier/Message/SmsMessage.php b/src/Symfony/Component/Notifier/Message/SmsMessage.php index 19cf7edd7a..f773512a89 100644 --- a/src/Symfony/Component/Notifier/Message/SmsMessage.php +++ b/src/Symfony/Component/Notifier/Message/SmsMessage.php @@ -17,8 +17,6 @@ use Symfony\Component\Notifier\Recipient\SmsRecipientInterface; /** * @author Fabien Potencier - * - * @experimental in 5.3 */ final class SmsMessage implements MessageInterface { diff --git a/src/Symfony/Component/Notifier/Messenger/MessageHandler.php b/src/Symfony/Component/Notifier/Messenger/MessageHandler.php index dee0d2c061..e7c8d12068 100644 --- a/src/Symfony/Component/Notifier/Messenger/MessageHandler.php +++ b/src/Symfony/Component/Notifier/Messenger/MessageHandler.php @@ -17,8 +17,6 @@ use Symfony\Component\Notifier\Transport\TransportInterface; /** * @author Fabien Potencier - * - * @experimental in 5.3 */ final class MessageHandler { diff --git a/src/Symfony/Component/Notifier/Notification/ChatNotificationInterface.php b/src/Symfony/Component/Notifier/Notification/ChatNotificationInterface.php index 4d3a48ff4c..7b42fac5fe 100644 --- a/src/Symfony/Component/Notifier/Notification/ChatNotificationInterface.php +++ b/src/Symfony/Component/Notifier/Notification/ChatNotificationInterface.php @@ -16,8 +16,6 @@ use Symfony\Component\Notifier\Recipient\RecipientInterface; /** * @author Fabien Potencier - * - * @experimental in 5.3 */ interface ChatNotificationInterface { diff --git a/src/Symfony/Component/Notifier/Notification/EmailNotificationInterface.php b/src/Symfony/Component/Notifier/Notification/EmailNotificationInterface.php index 817d9a3835..55660427ab 100644 --- a/src/Symfony/Component/Notifier/Notification/EmailNotificationInterface.php +++ b/src/Symfony/Component/Notifier/Notification/EmailNotificationInterface.php @@ -16,8 +16,6 @@ use Symfony\Component\Notifier\Recipient\EmailRecipientInterface; /** * @author Fabien Potencier - * - * @experimental in 5.3 */ interface EmailNotificationInterface { diff --git a/src/Symfony/Component/Notifier/Notification/Notification.php b/src/Symfony/Component/Notifier/Notification/Notification.php index fcbaa3c72d..f03bf42a75 100644 --- a/src/Symfony/Component/Notifier/Notification/Notification.php +++ b/src/Symfony/Component/Notifier/Notification/Notification.php @@ -17,8 +17,6 @@ use Symfony\Component\Notifier\Recipient\RecipientInterface; /** * @author Fabien Potencier - * - * @experimental in 5.3 */ class Notification { diff --git a/src/Symfony/Component/Notifier/Notification/SmsNotificationInterface.php b/src/Symfony/Component/Notifier/Notification/SmsNotificationInterface.php index 13744cbc41..02db67ac2a 100644 --- a/src/Symfony/Component/Notifier/Notification/SmsNotificationInterface.php +++ b/src/Symfony/Component/Notifier/Notification/SmsNotificationInterface.php @@ -16,8 +16,6 @@ use Symfony\Component\Notifier\Recipient\SmsRecipientInterface; /** * @author Fabien Potencier - * - * @experimental in 5.3 */ interface SmsNotificationInterface { diff --git a/src/Symfony/Component/Notifier/Notifier.php b/src/Symfony/Component/Notifier/Notifier.php index bbcfcd5c0d..426829a74c 100644 --- a/src/Symfony/Component/Notifier/Notifier.php +++ b/src/Symfony/Component/Notifier/Notifier.php @@ -22,8 +22,6 @@ use Symfony\Component\Notifier\Recipient\RecipientInterface; /** * @author Fabien Potencier - * - * @experimental in 5.3 */ final class Notifier implements NotifierInterface { diff --git a/src/Symfony/Component/Notifier/NotifierInterface.php b/src/Symfony/Component/Notifier/NotifierInterface.php index 4f87ebb339..2e62b8b87b 100644 --- a/src/Symfony/Component/Notifier/NotifierInterface.php +++ b/src/Symfony/Component/Notifier/NotifierInterface.php @@ -18,8 +18,6 @@ use Symfony\Component\Notifier\Recipient\RecipientInterface; * Interface for the Notifier system. * * @author Fabien Potencier - * - * @experimental in 5.3 */ interface NotifierInterface { diff --git a/src/Symfony/Component/Notifier/README.md b/src/Symfony/Component/Notifier/README.md index cde2108ff7..92ce150079 100644 --- a/src/Symfony/Component/Notifier/README.md +++ b/src/Symfony/Component/Notifier/README.md @@ -3,11 +3,6 @@ Notifier Component The Notifier component sends notifications via one or more channels (email, SMS, ...). -**This Component is experimental**. -[Experimental features](https://symfony.com/doc/current/contributing/code/experimental.html) -are not covered by Symfony's -[Backward Compatibility Promise](https://symfony.com/doc/current/contributing/code/bc.html). - Resources --------- diff --git a/src/Symfony/Component/Notifier/Recipient/EmailRecipientInterface.php b/src/Symfony/Component/Notifier/Recipient/EmailRecipientInterface.php index bc3781ac3f..6f8fb9de9c 100644 --- a/src/Symfony/Component/Notifier/Recipient/EmailRecipientInterface.php +++ b/src/Symfony/Component/Notifier/Recipient/EmailRecipientInterface.php @@ -13,8 +13,6 @@ namespace Symfony\Component\Notifier\Recipient; /** * @author Jan Schädlich - * - * @experimental in 5.3 */ interface EmailRecipientInterface extends RecipientInterface { diff --git a/src/Symfony/Component/Notifier/Recipient/EmailRecipientTrait.php b/src/Symfony/Component/Notifier/Recipient/EmailRecipientTrait.php index 5424ce9367..eaee0b1f26 100644 --- a/src/Symfony/Component/Notifier/Recipient/EmailRecipientTrait.php +++ b/src/Symfony/Component/Notifier/Recipient/EmailRecipientTrait.php @@ -13,8 +13,6 @@ namespace Symfony\Component\Notifier\Recipient; /** * @author Jan Schädlich - * - * @experimental in 5.3 */ trait EmailRecipientTrait { diff --git a/src/Symfony/Component/Notifier/Recipient/NoRecipient.php b/src/Symfony/Component/Notifier/Recipient/NoRecipient.php index 0e84cc83ab..ebf21939a5 100644 --- a/src/Symfony/Component/Notifier/Recipient/NoRecipient.php +++ b/src/Symfony/Component/Notifier/Recipient/NoRecipient.php @@ -13,8 +13,6 @@ namespace Symfony\Component\Notifier\Recipient; /** * @author Fabien Potencier - * - * @experimental in 5.3 */ class NoRecipient implements RecipientInterface { diff --git a/src/Symfony/Component/Notifier/Recipient/Recipient.php b/src/Symfony/Component/Notifier/Recipient/Recipient.php index 38eca09530..f8cc625c90 100644 --- a/src/Symfony/Component/Notifier/Recipient/Recipient.php +++ b/src/Symfony/Component/Notifier/Recipient/Recipient.php @@ -16,8 +16,6 @@ use Symfony\Component\Notifier\Exception\InvalidArgumentException; /** * @author Fabien Potencier * @author Jan Schädlich - * - * @experimental in 5.3 */ class Recipient implements EmailRecipientInterface, SmsRecipientInterface { diff --git a/src/Symfony/Component/Notifier/Recipient/RecipientInterface.php b/src/Symfony/Component/Notifier/Recipient/RecipientInterface.php index cc165d02a1..14cc075760 100644 --- a/src/Symfony/Component/Notifier/Recipient/RecipientInterface.php +++ b/src/Symfony/Component/Notifier/Recipient/RecipientInterface.php @@ -13,8 +13,6 @@ namespace Symfony\Component\Notifier\Recipient; /** * @author Jan Schädlich - * - * @experimental in 5.3 */ interface RecipientInterface { diff --git a/src/Symfony/Component/Notifier/Recipient/SmsRecipientInterface.php b/src/Symfony/Component/Notifier/Recipient/SmsRecipientInterface.php index 81c6abeb51..cb513847b1 100644 --- a/src/Symfony/Component/Notifier/Recipient/SmsRecipientInterface.php +++ b/src/Symfony/Component/Notifier/Recipient/SmsRecipientInterface.php @@ -14,8 +14,6 @@ namespace Symfony\Component\Notifier\Recipient; /** * @author Fabien Potencier * @author Jan Schädlich - * - * @experimental in 5.3 */ interface SmsRecipientInterface extends RecipientInterface { diff --git a/src/Symfony/Component/Notifier/Recipient/SmsRecipientTrait.php b/src/Symfony/Component/Notifier/Recipient/SmsRecipientTrait.php index c17b6d65e1..15e3c1b869 100644 --- a/src/Symfony/Component/Notifier/Recipient/SmsRecipientTrait.php +++ b/src/Symfony/Component/Notifier/Recipient/SmsRecipientTrait.php @@ -13,8 +13,6 @@ namespace Symfony\Component\Notifier\Recipient; /** * @author Jan Schädlich - * - * @experimental in 5.3 */ trait SmsRecipientTrait { diff --git a/src/Symfony/Component/Notifier/Texter.php b/src/Symfony/Component/Notifier/Texter.php index 5c69e042a1..03b1bcf8bb 100644 --- a/src/Symfony/Component/Notifier/Texter.php +++ b/src/Symfony/Component/Notifier/Texter.php @@ -22,8 +22,6 @@ use Symfony\Contracts\EventDispatcher\EventDispatcherInterface; /** * @author Fabien Potencier - * - * @experimental in 5.3 */ final class Texter implements TexterInterface { diff --git a/src/Symfony/Component/Notifier/TexterInterface.php b/src/Symfony/Component/Notifier/TexterInterface.php index c6bfe8e85c..e65547755c 100644 --- a/src/Symfony/Component/Notifier/TexterInterface.php +++ b/src/Symfony/Component/Notifier/TexterInterface.php @@ -17,8 +17,6 @@ use Symfony\Component\Notifier\Transport\TransportInterface; * Interface for classes able to send SMS messages synchronous and/or asynchronous. * * @author Fabien Potencier - * - * @experimental in 5.3 */ interface TexterInterface extends TransportInterface { diff --git a/src/Symfony/Component/Notifier/Transport.php b/src/Symfony/Component/Notifier/Transport.php index f370af913b..c2c8d2d840 100644 --- a/src/Symfony/Component/Notifier/Transport.php +++ b/src/Symfony/Component/Notifier/Transport.php @@ -42,8 +42,6 @@ use Symfony\Contracts\HttpClient\HttpClientInterface; /** * @author Fabien Potencier - * - * @experimental in 5.3 */ class Transport { diff --git a/src/Symfony/Component/Notifier/Transport/AbstractTransport.php b/src/Symfony/Component/Notifier/Transport/AbstractTransport.php index 8c81a3018d..ccb1f8c840 100644 --- a/src/Symfony/Component/Notifier/Transport/AbstractTransport.php +++ b/src/Symfony/Component/Notifier/Transport/AbstractTransport.php @@ -23,8 +23,6 @@ use Symfony\Contracts\HttpClient\HttpClientInterface; /** * @author Fabien Potencier - * - * @experimental in 5.3 */ abstract class AbstractTransport implements TransportInterface { diff --git a/src/Symfony/Component/Notifier/Transport/AbstractTransportFactory.php b/src/Symfony/Component/Notifier/Transport/AbstractTransportFactory.php index 69cfa61138..d595aa623a 100644 --- a/src/Symfony/Component/Notifier/Transport/AbstractTransportFactory.php +++ b/src/Symfony/Component/Notifier/Transport/AbstractTransportFactory.php @@ -20,8 +20,6 @@ use Symfony\Contracts\HttpClient\HttpClientInterface; /** * @author Konstantin Myakshin * @author Fabien Potencier - * - * @experimental in 5.3 */ abstract class AbstractTransportFactory implements TransportFactoryInterface { diff --git a/src/Symfony/Component/Notifier/Transport/Dsn.php b/src/Symfony/Component/Notifier/Transport/Dsn.php index 5b51061555..f2385a5584 100644 --- a/src/Symfony/Component/Notifier/Transport/Dsn.php +++ b/src/Symfony/Component/Notifier/Transport/Dsn.php @@ -15,8 +15,6 @@ use Symfony\Component\Notifier\Exception\InvalidArgumentException; /** * @author Fabien Potencier - * - * @experimental in 5.3 */ final class Dsn { diff --git a/src/Symfony/Component/Notifier/Transport/FailoverTransport.php b/src/Symfony/Component/Notifier/Transport/FailoverTransport.php index 8714050372..cc0191e234 100644 --- a/src/Symfony/Component/Notifier/Transport/FailoverTransport.php +++ b/src/Symfony/Component/Notifier/Transport/FailoverTransport.php @@ -17,8 +17,6 @@ use Symfony\Component\Notifier\Message\MessageInterface; * Uses several Transports using a failover algorithm. * * @author Fabien Potencier - * - * @experimental in 5.3 */ class FailoverTransport extends RoundRobinTransport { diff --git a/src/Symfony/Component/Notifier/Transport/NullTransport.php b/src/Symfony/Component/Notifier/Transport/NullTransport.php index 94fee129d2..5178b1e14e 100644 --- a/src/Symfony/Component/Notifier/Transport/NullTransport.php +++ b/src/Symfony/Component/Notifier/Transport/NullTransport.php @@ -21,8 +21,6 @@ use Symfony\Contracts\EventDispatcher\EventDispatcherInterface; /** * @author Fabien Potencier - * - * @experimental in 5.3 */ class NullTransport implements TransportInterface { diff --git a/src/Symfony/Component/Notifier/Transport/NullTransportFactory.php b/src/Symfony/Component/Notifier/Transport/NullTransportFactory.php index 231837eabb..1ee6ed6ed8 100644 --- a/src/Symfony/Component/Notifier/Transport/NullTransportFactory.php +++ b/src/Symfony/Component/Notifier/Transport/NullTransportFactory.php @@ -15,8 +15,6 @@ use Symfony\Component\Notifier\Exception\UnsupportedSchemeException; /** * @author Fabien Potencier - * - * @experimental in 5.3 */ final class NullTransportFactory extends AbstractTransportFactory { diff --git a/src/Symfony/Component/Notifier/Transport/RoundRobinTransport.php b/src/Symfony/Component/Notifier/Transport/RoundRobinTransport.php index c78b8763f1..f438d407f4 100644 --- a/src/Symfony/Component/Notifier/Transport/RoundRobinTransport.php +++ b/src/Symfony/Component/Notifier/Transport/RoundRobinTransport.php @@ -21,8 +21,6 @@ use Symfony\Component\Notifier\Message\SentMessage; * Uses several Transports using a round robin algorithm. * * @author Fabien Potencier - * - * @experimental in 5.3 */ class RoundRobinTransport implements TransportInterface { diff --git a/src/Symfony/Component/Notifier/Transport/TransportFactoryInterface.php b/src/Symfony/Component/Notifier/Transport/TransportFactoryInterface.php index 432f69d04a..ff62e189c6 100644 --- a/src/Symfony/Component/Notifier/Transport/TransportFactoryInterface.php +++ b/src/Symfony/Component/Notifier/Transport/TransportFactoryInterface.php @@ -16,8 +16,6 @@ use Symfony\Component\Notifier\Exception\UnsupportedSchemeException; /** * @author Konstantin Myakshin - * - * @experimental in 5.3 */ interface TransportFactoryInterface { diff --git a/src/Symfony/Component/Notifier/Transport/TransportInterface.php b/src/Symfony/Component/Notifier/Transport/TransportInterface.php index 812b03919e..85cd910a4a 100644 --- a/src/Symfony/Component/Notifier/Transport/TransportInterface.php +++ b/src/Symfony/Component/Notifier/Transport/TransportInterface.php @@ -18,8 +18,6 @@ use Symfony\Component\Notifier\Message\SentMessage; /** * @author Fabien Potencier - * - * @experimental in 5.3 */ interface TransportInterface { diff --git a/src/Symfony/Component/Notifier/Transport/Transports.php b/src/Symfony/Component/Notifier/Transport/Transports.php index 049b64da92..f411d6bc0c 100644 --- a/src/Symfony/Component/Notifier/Transport/Transports.php +++ b/src/Symfony/Component/Notifier/Transport/Transports.php @@ -18,8 +18,6 @@ use Symfony\Component\Notifier\Message\SentMessage; /** * @author Fabien Potencier - * - * @experimental in 5.3 */ final class Transports implements TransportInterface {