8000 feature #51249 [RemoteEvent] Mark component as non experimental (fabpot) · symfony/symfony@18b9cad · GitHub
[go: up one dir, main page]

Skip to content

Commit 18b9cad

Browse files
committed
feature #51249 [RemoteEvent] Mark component as non experimental (fabpot)
This PR was merged into the 6.4 branch. Discussion ---------- [RemoteEvent] Mark component as non experimental | Q | A | ------------- | --- | Branch? | 6.4 | Bug fix? | no | New feature? | yes <!-- please update src/**/CHANGELOG.md files --> | Deprecations? | no <!-- please update UPGRADE-*.md and src/**/CHANGELOG.md files --> | Tickets | n/a | License | MIT | Doc PR | n/a Commits ------- 472f416 [RemoteEvent] Mark component as non experimental
2 parents 5da7dbf + 472f416 commit 18b9cad

15 files changed

+5
-28
lines changed

src/Symfony/Component/RemoteEvent/Attribute/AsRemoteEventConsumer.php

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

1414
/**
1515
* @author Fabien Potencier <fabien@symfony.com>
16-
*
17-
* @experimental in 6.3
1816
*/
1917
#[\Attribute(\Attribute::TARGET_CLASS)]
2018
class AsRemoteEventConsumer

src/Symfony/Component/RemoteEvent/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
CHANGELOG
22
=========
33

4+
6.4
5+
---
6+
7+
* Mark the component as non experimental
8+
49
6.3
510
---
611

src/Symfony/Component/RemoteEvent/Consumer/ConsumerInterface.php

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

1616
/**
1717
* @author Fabien Potencier <fabien@symfony.com>
18-
*
19-
* @experimental in 6.3
2018
*/
2119
interface ConsumerInterface
2220
{

src/Symfony/Component/RemoteEvent/Event/Mailer/AbstractMailerEvent.php

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

1616
/**
1717
* @author Fabien Potencier <fabien@symfony.com>
18-
*
19-
* @experimental in 6.3
2018
*/
2119
abstract class AbstractMailerEvent extends RemoteEvent
2220
{

src/Symfony/Component/RemoteEvent/Event/Mailer/MailerDeliveryEvent.php

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

1414
/**
1515
* @author Fabien Potencier <fabien@symfony.com>
16-
*
17-
* @experimental in 6.3
1816
*/
1917
final class MailerDeliveryEvent extends AbstractMailerEvent
2018
{

src/Symfony/Component/RemoteEvent/Event/Mailer/MailerEngagementEvent.php

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

1414
/**
1515
* @author Fabien Potencier <fabien@symfony.com>
16-
*
17-
* @experimental in 6.3
1816
*/
1917
final class MailerEngagementEvent extends AbstractMailerEvent
2018
{

src/Symfony/Component/RemoteEvent/Event/Sms/SmsEvent.php

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

1616
/**
1717
* @author Fabien Potencier <fabien@symfony.com>
18-
*
19-
* @experimental in 6.3
2018
*/
2119
final class SmsEvent extends RemoteEvent
2220
{

src/Symfony/Component/RemoteEvent/Exception/ExceptionInterface.php

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

1414
/**
1515
* @author Fabien Potencier <fabien@symfony.com>
16-
*
17-
* @experimental in 6.3
1816
*/
1917
interface ExceptionInterface extends \Throwable
2018
{

src/Symfony/Component/RemoteEvent/Exception/InvalidArgumentException.php

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

1414
/**
1515
* @author Fabien Potencier <fabien@symfony.com>
16-
*
17-
* @experimental in 6.3
1816
*/
1917
class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface
2018
{

src/Symfony/Component/RemoteEvent/Exception/LogicException.php

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

1414
/**
1515
* @author Fabien Potencier <fabien@symfony.com>
16-
*
17-
* @experimental in 6.3
1816
*/
1917
class LogicException extends \LogicException implements ExceptionInterface
2018
{

src/Symfony/Component/RemoteEvent/Exception/ParseException.php

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

1414
/**
1515
* @author Fabien Potencier <fabien@symfony.com>
16-
*
17-
* @experimental in 6.3
1816
*/
1917
class ParseException extends InvalidArgumentException
2018
{

src/Symfony/Component/RemoteEvent/Exception/RuntimeException.php

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

1414
/**
1515
* @author Fabien Potencier <fabien@symfony.com>
16-
*
17-
* @experimental in 6.3
1816
*/
1917
class RuntimeException extends \RuntimeException implements ExceptionInterface
2018
{

src/Symfony/Component/RemoteEvent/Messenger/ConsumeRemoteEventHandler.php

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

1818
/**
1919
* @author Fabien Potencier <fabien@symfony.com>
20-
*
21-
* @experimental in 6.3
2220
*/
2321
class ConsumeRemoteEventHandler
2422
{

src/Symfony/Component/RemoteEvent/Messenger/ConsumeRemoteEventMessage.php

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

1616
/**
1717
* @author Fabien Potencier <fabien@symfony.com>
18-
*
19-
* @experimental in 6.3
2018
*/
2119
class ConsumeRemoteEventMessage
2220
{

src/Symfony/Component/RemoteEvent/RemoteEvent.php

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

1414
/**
1515
* @author Fabien Potencier <fabien@symfony.com>
16-
*
17-
* @experimental in 6.3
1816
*/
1917
class RemoteEvent
2018
{

0 commit comments

Comments
 (0)
0