Skip to content
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

[Notifier] Mark the component as experimental in 5.1 #36514

Merged
merged 1 commit into from
Apr 21, 2020
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 @@ -22,7 +22,7 @@
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.0
* @experimental in 5.1
*/
final class NexmoTransport extends AbstractTransport
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.0
* @experimental in 5.1
*/
final class NexmoTransportFactory extends AbstractTransportFactory
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.0
* @experimental in 5.1
*/
final class SlackOptions implements MessageOptionsInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
*
* @see https://api.slack.com/messaging/webhooks
*
* @experimental in 5.0
* @experimental in 5.1
*/
final class SlackTransport extends AbstractTransport
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.0
* @experimental in 5.1
*/
final class SlackTransportFactory extends AbstractTransportFactory
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
*
* @internal
*
* @experimental in 5.0
* @experimental in 5.1
*/
final class TelegramTransport extends AbstractTransport
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.0
* @experimental in 5.1
*/
final class TelegramTransportFactory extends AbstractTransportFactory
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.0
* @experimental in 5.1
*/
final class TwilioTransport extends AbstractTransport
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.0
* @experimental in 5.1
*/
final class TwilioTransportFactory extends AbstractTransportFactory
{
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Component/Notifier/Channel/AbstractChannel.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.0
* @experimental in 5.1
*/
abstract class AbstractChannel implements ChannelInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Component/Notifier/Channel/BrowserChannel.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.0
* @experimental in 5.1
*/
final class BrowserChannel implements ChannelInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.0
* @experimental in 5.1
*/
interface ChannelInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Component/Notifier/Channel/ChannelPolicy.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.0
* @experimental in 5.1
*/
final class ChannelPolicy implements ChannelPolicyInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.0
* @experimental in 5.1
*/
interface ChannelPolicyInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Component/Notifier/Channel/ChatChannel.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.0
* @experimental in 5.1
*/
class ChatChannel extends AbstractChannel
{
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Component/Notifier/Channel/EmailChannel.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.0
* @experimental in 5.1
*/
class EmailChannel implements ChannelInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Component/Notifier/Channel/SmsChannel.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.0
* @experimental in 5.1
*/
class SmsChannel extends AbstractChannel
{
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Component/Notifier/Chatter.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.0
* @experimental in 5.1
*/
final class Chatter implements ChatterInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Component/Notifier/ChatterInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
*
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.0
* @experimental in 5.1
*/
interface ChatterInterface extends TransportInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.0
* @experimental in 5.1
*/
final class NotificationDataCollector extends DataCollector
{
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Component/Notifier/Event/MessageEvent.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.0
* @experimental in 5.1
*/
final class MessageEvent extends Event
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.0
* @experimental in 5.1
*/
class NotificationEvents
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.0
* @experimental in 5.1
*/
class NotificationLoggerListener implements EventSubscriberInterface, ResetInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
*
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.0
* @experimental in 5.1
*/
class SendFailedMessageToNotifierListener implements EventSubscriberInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.0
* @experimental in 5.1
*/
interface ExceptionInterface extends \Throwable
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.0
* @experimental in 5.1
*/
class IncompleteDsnException extends InvalidArgumentException
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.0
* @experimental in 5.1
*/
class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.0
* @experimental in 5.1
*/
class LogicException extends \LogicException implements ExceptionInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.0
* @experimental in 5.1
*/
class RuntimeException extends \RuntimeException implements ExceptionInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.0
* @experimental in 5.1
*/
class TransportException extends RuntimeException implements TransportExceptionInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.0
* @experimental in 5.1
*/
interface TransportExceptionInterface extends ExceptionInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
/**
* @author Konstantin Myakshin <molodchick@gmail.com>
*
* @experimental in 5.0
* @experimental in 5.1
*/
class UnsupportedSchemeException extends LogicException
{
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Component/Notifier/Message/ChatMessage.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.0
* @experimental in 5.1
*/
final class ChatMessage implements MessageInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Component/Notifier/Message/EmailMessage.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.0
* @experimental in 5.1
*/
final class EmailMessage implements MessageInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.0
* @experimental in 5.1
*/
interface MessageInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.0
* @experimental in 5.1
*/
interface MessageOptionsInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Component/Notifier/Message/SmsMessage.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.0
* @experimental in 5.1
*/
final class SmsMessage implements MessageInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.0
* @experimental in 5.1
*/
final class MessageHandler
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.0
* @experimental in 5.1
*/
interface ChatNotificationInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.0
* @experimental in 5.1
*/
interface EmailNotificationInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.0
* @experimental in 5.1
*/
class Notification
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.0
* @experimental in 5.1
*/
interface SmsNotificationInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Component/Notifier/Notifier.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.0
* @experimental in 5.1
*/
final class Notifier implements NotifierInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Component/Notifier/NotifierInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.0
* @experimental in 5.1
*/
interface NotifierInterface
{
Expand Down
Loading