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 14a3730

Browse filesBrowse files
committed
minor #39618 [Notifier] Remove @experimental annotations (jderusse)
This PR was merged into the 5.3-dev branch. Discussion ---------- [Notifier] Remove @experimental annotations | Q | A | ------------- | --- | Branch? | 5.x | Bug fix? | no | New feature? | yes | Deprecations? | no | Tickets | - | License | MIT | Doc PR | symfony/symfony-docs#14735 Commits ------- b66368a Remove @experimental annotations
2 parents af43335 + b66368a commit 14a3730
Copy full SHA for 14a3730

File tree

154 files changed

+91
-276
lines changed
Filter options

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Dismiss banner

154 files changed

+91
-276
lines changed

‎src/Symfony/Component/Notifier/Bridge/Discord/CHANGELOG.md

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Discord/CHANGELOG.md
+5Lines changed: 5 additions & 0 deletions

‎src/Symfony/Component/Notifier/Bridge/Discord/DiscordOptions.php

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

1818
/**
1919
* @author Karoly Gossler <connor@connor.hu>
20-
*
21-
* @experimental in 5.3
2220
*/
2321
final class DiscordOptions implements MessageOptionsInterface
2422
{

‎src/Symfony/Component/Notifier/Bridge/Discord/DiscordTransport.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Discord/DiscordTransport.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@
2323

2424
/**
2525
* @author Mathieu Piot <math.piot@gmail.com>
26-
*
27-
* @experimental in 5.3
2826
*/
2927
final class DiscordTransport extends AbstractTransport
3028
{

‎src/Symfony/Component/Notifier/Bridge/Discord/DiscordTransportFactory.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Discord/DiscordTransportFactory.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@
1919

2020
/**
2121
* @author Mathieu Piot <math.piot@gmail.com>
22-
*
23-
* @experimental in 5.3
2422
*/
2523
final class DiscordTransportFactory extends AbstractTransportFactory
2624
{

‎src/Symfony/Component/Notifier/Bridge/Discord/Embeds/AbstractDiscordEmbed.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Discord/Embeds/AbstractDiscordEmbed.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313

1414
/**
1515
* @author Karoly Gossler <connor@connor.hu>
16-
*
17-
* @experimental in 5.3
1816
*/
1917
abstract class AbstractDiscordEmbed implements DiscordEmbedInterface
2018
{

‎src/Symfony/Component/Notifier/Bridge/Discord/Embeds/AbstractDiscordEmbedObject.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Discord/Embeds/AbstractDiscordEmbedObject.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313

1414
/**
1515
* @author Karoly Gossler <connor@connor.hu>
16-
*
17-
* @experimental in 5.3
1816
*/
1917
abstract class AbstractDiscordEmbedObject implements DiscordEmbedObjectInterface
2018
{

‎src/Symfony/Component/Notifier/Bridge/Discord/Embeds/DiscordAuthorEmbedObject.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Discord/Embeds/DiscordAuthorEmbedObject.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313

1414
/**
1515
* @author Karoly Gossler <connor@connor.hu>
16-
*
17-
* @experimental in 5.3
1816
*/
1917
final class DiscordAuthorEmbedObject extends AbstractDiscordEmbedObject
2018
{

‎src/Symfony/Component/Notifier/Bridge/Discord/Embeds/DiscordEmbed.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Discord/Embeds/DiscordEmbed.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313

1414
/**
1515
* @author Karoly Gossler <connor@connor.hu>
16-
*
17-
* @experimental in 5.3
1816
*/
1917
final class DiscordEmbed extends AbstractDiscordEmbed
2018
{

‎src/Symfony/Component/Notifier/Bridge/Discord/Embeds/DiscordEmbedObjectInterface.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Discord/Embeds/DiscordEmbedObjectInterface.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313

1414
/**
1515
* @author Karoly Gossler <connor@connor.hu>
16-
*
17-
* @experimental in 5.3
1816
*/
1917
interface DiscordEmbedObjectInterface
2018
{

‎src/Symfony/Component/Notifier/Bridge/Discord/Embeds/DiscordFieldEmbedObject.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Discord/Embeds/DiscordFieldEmbedObject.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313

1414
/**
1515
* @author Karoly Gossler <connor@connor.hu>
16-
*
17-
* @experimental in 5.3
1816
*/
1917
final class DiscordFieldEmbedObject extends AbstractDiscordEmbedObject
2018
{

‎src/Symfony/Component/Notifier/Bridge/Discord/Embeds/DiscordFooterEmbedObject.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Discord/Embeds/DiscordFooterEmbedObject.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313

1414
/**
1515
* @author Karoly Gossler <connor@connor.hu>
16-
*
17-
* @experimental in 5.3
1816
*/
1917
final class DiscordFooterEmbedObject extends AbstractDiscordEmbedObject
2018
{

‎src/Symfony/Component/Notifier/Bridge/Discord/Embeds/DiscordMediaEmbedObject.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Discord/Embeds/DiscordMediaEmbedObject.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313

1414
/**
1515
* @author Karoly Gossler <connor@connor.hu>
16-
*
17-
* @experimental in 5.3
1816
*/
1917
class DiscordMediaEmbedObject extends AbstractDiscordEmbedObject
2018
{

‎src/Symfony/Component/Notifier/Bridge/Esendex/CHANGELOG.md

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Esendex/CHANGELOG.md
+5Lines changed: 5 additions & 0 deletions

‎src/Symfony/Component/Notifier/Bridge/Esendex/EsendexTransport.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Esendex/EsendexTransport.php
-3Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,6 @@
2222
use Symfony\Contracts\EventDispatcher\EventDispatcherInterface;
2323
use Symfony\Contracts\HttpClient\HttpClientInterface;
2424

25-
/**
26-
* @experimental in 5.3
27-
*/
2825
final class EsendexTransport extends AbstractTransport
2926
{
3027
protected const HOST = 'api.esendex.com';

‎src/Symfony/Component/Notifier/Bridge/Esendex/EsendexTransportFactory.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Esendex/EsendexTransportFactory.php
-3Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,6 @@
1717
use Symfony\Component\Notifier\Transport\Dsn;
1818
use Symfony\Component\Notifier\Transport\TransportInterface;
1919

20-
/**
21-
* @experimental in 5.3
22-
*/
2320
final class EsendexTransportFactory extends AbstractTransportFactory
2421
{
2522
/**

‎src/Symfony/Component/Notifier/Bridge/Firebase/CHANGELOG.md

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Firebase/CHANGELOG.md
+5Lines changed: 5 additions & 0 deletions

‎src/Symfony/Component/Notifier/Bridge/Firebase/FirebaseOptions.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Firebase/FirebaseOptions.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
* @author Jeroen Spee <https://github.com/Jeroeny>
1818
*
1919
* @see https://firebase.google.com/docs/cloud-messaging/xmpp-server-ref.html
20-
*
21-
* @experimental in 5.3
2220
*/
2321
abstract class FirebaseOptions implements MessageOptionsInterface
2422
{

‎src/Symfony/Component/Notifier/Bridge/Firebase/FirebaseTransport.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Firebase/FirebaseTransport.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@
2323

2424
/**
2525
* @author Jeroen Spee <https://github.com/Jeroeny>
26-
*
27-
* @experimental in 5.3
2826
*/
2927
final class FirebaseTransport extends AbstractTransport
3028
{

‎src/Symfony/Component/Notifier/Bridge/Firebase/FirebaseTransportFactory.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Firebase/FirebaseTransportFactory.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818

1919
/**
2020
* @author Jeroen Spee <https://github.com/Jeroeny>
21-
*
22-
* @experimental in 5.3
2321
*/
2422
final class FirebaseTransportFactory extends AbstractTransportFactory
2523
{

‎src/Symfony/Component/Notifier/Bridge/Firebase/Notification/AndroidNotification.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Firebase/Notification/AndroidNotification.php
-3Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@
1313

1414
use Symfony\Component\Notifier\Bridge\Firebase\FirebaseOptions;
1515

16-
/**
17-
* @experimental in 5.3
18-
*/
1916
final class AndroidNotification extends FirebaseOptions
2017
{
2118
public function channelId(string $channelId): self

‎src/Symfony/Component/Notifier/Bridge/Firebase/Notification/IOSNotification.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Firebase/Notification/IOSNotification.php
-3Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@
1313

1414
use Symfony\Component\Notifier\Bridge\Firebase\FirebaseOptions;
1515

16-
/**
17-
* @experimental in 5.3
18-
*/
1916
final class IOSNotification extends FirebaseOptions
2017
{
2118
public function sound(string $sound): self

‎src/Symfony/Component/Notifier/Bridge/Firebase/Notification/WebNotification.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Firebase/Notification/WebNotification.php
-3Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@
1313

1414
use Symfony\Component\Notifier\Bridge\Firebase\FirebaseOptions;
1515

16-
/**
17-
* @experimental in 5.3
18-
*/
1916
final class WebNotification extends FirebaseOptions
2017
{
2118
public function icon(string $icon): self

‎src/Symfony/Component/Notifier/Bridge/FreeMobile/CHANGELOG.md

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/FreeMobile/CHANGELOG.md
+5Lines changed: 5 additions & 0 deletions

‎src/Symfony/Component/Notifier/Bridge/FreeMobile/FreeMobileTransport.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/FreeMobile/FreeMobileTransport.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@
2222

2323
/**
2424
* @author Antoine Makdessi <amakdessi@me.com>
25-
*
26-
* @experimental in 5.3
2725
*/
2826
final class FreeMobileTransport extends AbstractTransport
2927
{

‎src/Symfony/Component/Notifier/Bridge/FreeMobile/FreeMobileTransportFactory.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/FreeMobile/FreeMobileTransportFactory.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@
1919

2020
/**
2121
* @author Antoine Makdessi <amakdessi@me.com>
22-
*
23-
* @experimental in 5.3
2422
*/
2523
final class FreeMobileTransportFactory extends AbstractTransportFactory
2624
{

‎src/Symfony/Component/Notifier/Bridge/GoogleChat/CHANGELOG.md

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/GoogleChat/CHANGELOG.md
+5Lines changed: 5 additions & 0 deletions

‎src/Symfony/Component/Notifier/Bridge/GoogleChat/GoogleChatOptions.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/GoogleChat/GoogleChatOptions.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818

1919
/**
2020
* @author Jérôme Tamarelle <jerome@tamarelle.net>
21-
*
22-
* @experimental in 5.3
2321
*/
2422
final class GoogleChatOptions implements MessageOptionsInterface
2523
{

‎src/Symfony/Component/Notifier/Bridge/GoogleChat/GoogleChatTransport.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/GoogleChat/GoogleChatTransport.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@
2424

2525
/**
2626
* @author Jérôme Tamarelle <jerome@tamarelle.net>
27-
*
28-
* @experimental in 5.3
2927
*/
3028
final class GoogleChatTransport extends AbstractTransport
3129
{

‎src/Symfony/Component/Notifier/Bridge/GoogleChat/GoogleChatTransportFactory.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/GoogleChat/GoogleChatTransportFactory.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818

1919
/**
2020
* @author Jérôme Tamarelle <jerome@tamarelle.net>
21-
*
22-
* @experimental in 5.3
2321
*/
2422
final class GoogleChatTransportFactory extends AbstractTransportFactory
2523
{

‎src/Symfony/Component/Notifier/Bridge/Infobip/CHANGELOG.md

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Infobip/CHANGELOG.md
+5Lines changed: 5 additions & 0 deletions

‎src/Symfony/Component/Notifier/Bridge/Infobip/InfobipTransport.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Infobip/InfobipTransport.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@
2323
/**
2424
* @author Fabien Potencier <fabien@symfony.com>
2525
* @author Jérémy Romey <jeremy@free-agent.fr>
26-
*
27-
* @experimental in 5.3
2826
*/
2927
final class InfobipTransport extends AbstractTransport
3028
{

‎src/Symfony/Component/Notifier/Bridge/Infobip/InfobipTransportFactory.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Infobip/InfobipTransportFactory.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@
2020
/**
2121
* @author Fabien Potencier <fabien@symfony.com>
2222
* @author Jérémy Romey <jeremy@free-agent.fr>
23-
*
24-
* @experimental in 5.3
2523
*/
2624
final class InfobipTransportFactory extends AbstractTransportFactory
2725
{

‎src/Symfony/Component/Notifier/Bridge/Iqsms/IqsmsTransport.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Iqsms/IqsmsTransport.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@
2222

2323
/**
2424
* @author Oleksandr Barabolia <alexandrbarabolya@gmail.com>
25-
*
26-
* @experimental in 5.3
2725
*/
2826
final class IqsmsTransport extends AbstractTransport
2927
{

‎src/Symfony/Component/Notifier/Bridge/Iqsms/IqsmsTransportFactory.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Iqsms/IqsmsTransportFactory.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@
1919

2020
/**
2121
* @author Oleksandr Barabolia <alexandrbarabolya@gmail.com>
22-
*
23-
* @experimental in 5.3
2422
*/
2523
final class IqsmsTransportFactory extends AbstractTransportFactory
2624
{

‎src/Symfony/Component/Notifier/Bridge/LinkedIn/CHANGELOG.md

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/LinkedIn/CHANGELOG.md
+5Lines changed: 5 additions & 0 deletions

‎src/Symfony/Component/Notifier/Bridge/LinkedIn/LinkedInOptions.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/LinkedIn/LinkedInOptions.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@
2020

2121
/**
2222
* @author Smaïne Milianni <smaine.milianni@gmail.com>
23-
*
24-
* @experimental in 5.3
2523
*/
2624
final class LinkedInOptions implements MessageOptionsInterface
2725
{

‎src/Symfony/Component/Notifier/Bridge/LinkedIn/LinkedInTransport.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/LinkedIn/LinkedInTransport.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@
2525
/**
2626
* @author Smaïne Milianni <smaine.milianni@gmail.com>
2727
*
28-
* @experimental in 5.3
29-
*
3028
* @see https://docs.microsoft.com/en-us/linkedin/marketing/integrations/community-management/shares/ugc-post-api#sharecontent
3129
*/
3230
final class LinkedInTransport extends AbstractTransport

‎src/Symfony/Component/Notifier/Bridge/LinkedIn/LinkedInTransportFactory.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/LinkedIn/LinkedInTransportFactory.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818

1919
/**
2020
* @author Smaïne Milianni <smaine.milianni@gmail.com>
21-
*
22-
* @experimental in 5.3
2321
*/
2422
class LinkedInTransportFactory extends AbstractTransportFactory
2523
{

‎src/Symfony/Component/Notifier/Bridge/LinkedIn/Share/AbstractLinkedInShare.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/LinkedIn/Share/AbstractLinkedInShare.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313

1414
/**
1515
* @author Smaïne Milianni <smaine.milianni@gmail.com>
16-
*
17-
* @experimental in 5.3
1816
*/
1917
abstract class AbstractLinkedInShare
2018
{

‎src/Symfony/Component/Notifier/Bridge/LinkedIn/Share/AuthorShare.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/LinkedIn/Share/AuthorShare.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313

1414
/**
1515
* @author Smaïne Milianni <smaine.milianni@gmail.com>
16-
*
17-
* @experimental in 5.3
1816
*/
1917
final class AuthorShare extends AbstractLinkedInShare
2018
{

‎src/Symfony/Component/Notifier/Bridge/LinkedIn/Share/LifecycleStateShare.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/LinkedIn/Share/LifecycleStateShare.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
* @author Smaïne Milianni <smaine.milianni@gmail.com>
1818
*
1919
* @see https://docs.microsoft.com/en-us/linkedin/marketing/integrations/community-management/shares/ugc-post-api#schema lifecycleState section
20-
*
21-
* @experimental in 5.3
2220
*/
2321
final class LifecycleStateShare extends AbstractLinkedInShare
2422
{

0 commit comments

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