Skip to content

[RemoteEvent] Mark component as non experimental #51249

New issue

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

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

Already on GitHub? Sign in to your account

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

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@

/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 6.3
*/
#[\Attribute(\Attribute::TARGET_CLASS)]
class AsRemoteEventConsumer
Expand Down
5 changes: 5 additions & 0 deletions src/Symfony/Component/RemoteEvent/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
CHANGELOG
=========

6.4
---

* Mark the component as non experimental

6.3
---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@

/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 6.3
*/
interface ConsumerInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@

/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 6.3
*/
abstract class AbstractMailerEvent extends RemoteEvent
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@

/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 6.3
*/
final class MailerDeliveryEvent extends AbstractMailerEvent
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@

/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 6.3
*/
final class MailerEngagementEvent extends AbstractMailerEvent
{
Expand Down
2 changes: 0 additions & 2 deletions src/Symfony/Component/RemoteEvent/Event/Sms/SmsEvent.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@

/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 6.3
*/
final class SmsEvent extends RemoteEvent
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@

/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 6.3
*/
interface ExceptionInterface extends \Throwable
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@

/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 6.3
*/
class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@

/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 6.3
*/
class LogicException extends \LogicException implements ExceptionInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@

/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 6.3
*/
class ParseException extends InvalidArgumentException
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@

/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 6.3
*/
class RuntimeException extends \RuntimeException implements ExceptionInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@

/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 6.3
*/
class ConsumeRemoteEventHandler
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@

/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 6.3
*/
class ConsumeRemoteEventMessage
{
Expand Down
2 changes: 0 additions & 2 deletions src/Symfony/Component/RemoteEvent/RemoteEvent.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@

/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 6.3
*/
class RemoteEvent
{
Expand Down