Merge branch '5.2' into 5.x

* 5.2:
  Add missing entries in .gitattributes
  Fix @experimental annotations
  Remove not used mailer_transport.xml service config
  Update README.md
This commit is contained in:
Fabien Potencier 2020-12-05 08:34:44 +01:00
commit db4883d115
108 changed files with 110 additions and 146 deletions

View File

@ -1,54 +0,0 @@
<?xml version="1.0" encoding="UTF-8" ?>
<container xmlns="http://symfony.com/schema/dic/services"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd">
<services>
<service id="mailer.transport_factory.abstract" class="Symfony\Component\Mailer\Transport\AbstractTransportFactory" abstract="true">
<argument type="service" id="event_dispatcher" />
<argument type="service" id="http_client" on-invalid="ignore" />
<argument type="service" id="logger" on-invalid="ignore" />
</service>
<service id="mailer.transport_factory.amazon" class="Symfony\Component\Mailer\Bridge\Amazon\Transport\SesTransportFactory" parent="mailer.transport_factory.abstract">
<tag name="mailer.transport_factory" />
</service>
<service id="mailer.transport_factory.gmail" class="Symfony\Component\Mailer\Bridge\Google\Transport\GmailTransportFactory" parent="mailer.transport_factory.abstract">
<tag name="mailer.transport_factory" />
</service>
<service id="mailer.transport_factory.mailchimp" class="Symfony\Component\Mailer\Bridge\Mailchimp\Transport\MandrillTransportFactory" parent="mailer.transport_factory.abstract">
<tag name="mailer.transport_factory" />
</service>
<service id="mailer.transport_factory.mailgun" class="Symfony\Component\Mailer\Bridge\Mailgun\Transport\MailgunTransportFactory" parent="mailer.transport_factory.abstract">
<tag name="mailer.transport_factory" />
</service>
<service id="mailer.transport_factory.postmark" class="Symfony\Component\Mailer\Bridge\Postmark\Transport\PostmarkTransportFactory" parent="mailer.transport_factory.abstract">
<tag name="mailer.transport_factory" />
</service>
<service id="mailer.transport_factory.sendgrid" class="Symfony\Component\Mailer\Bridge\Sendgrid\Transport\SendgridTransportFactory" parent="mailer.transport_factory.abstract">
<tag name="mailer.transport_factory" />
</service>
<service id="mailer.transport_factory.mailjet" class="Symfony\Component\Mailer\Bridge\Mailjet\Transport\MailjetTransportFactory" parent="mailer.transport_factory.abstract">
<tag name="mailer.transport_factory" />
</service>
<service id="mailer.transport_factory.null" class="Symfony\Component\Mailer\Transport\NullTransportFactory" parent="mailer.transport_factory.abstract">
<tag name="mailer.transport_factory" />
</service>
<service id="mailer.transport_factory.sendmail" class="Symfony\Component\Mailer\Transport\SendmailTransportFactory" parent="mailer.transport_factory.abstract">
<tag name="mailer.transport_factory" />
</service>
<service id="mailer.transport_factory.smtp" class="Symfony\Component\Mailer\Transport\Smtp\EsmtpTransportFactory" parent="mailer.transport_factory.abstract">
<tag name="mailer.transport_factory" priority="-100" />
</service>
</services>
</container>

View File

@ -22,7 +22,7 @@ use Symfony\Component\RateLimiter\RateLimit;
*
* @author Wouter de Jong <wouter@wouterj.nl>
*
* @experimental in Symfony 5.2
* @experimental in 5.2
*/
abstract class AbstractRequestRateLimiter implements RequestRateLimiterInterface
{

View File

@ -22,7 +22,7 @@ use Symfony\Component\RateLimiter\RateLimit;
*
* @author Wouter de Jong <wouter@wouterj.nl>
*
* @experimental in Symfony 5.2
* @experimental in 5.2
*/
interface RequestRateLimiterInterface
{

View File

@ -28,7 +28,7 @@ use Symfony\Component\Security\Http\Authenticator\Passport\PassportInterface;
* @author Wouter de Jong <wouter@wouterj.nl>
*
* @final
* @experimental in Symfony 5.1
* @experimental in 5.1
*/
class LdapAuthenticator implements AuthenticatorInterface
{

View File

@ -21,7 +21,7 @@ use Symfony\Component\Security\Http\Authenticator\Passport\Badge\BadgeInterface;
* @author Wouter de Jong <wouter@wouterj.nl>
*
* @final
* @experimental in Symfony 5.1
* @experimental in 5.1
*/
class LdapBadge implements BadgeInterface
{

View File

@ -1,3 +1,4 @@
/Tests export-ignore
/phpunit.xml.dist export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore

View File

@ -1,3 +1,4 @@
/Tests export-ignore
/phpunit.xml.dist export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore

View File

@ -1,3 +1,4 @@
/Tests export-ignore
/phpunit.xml.dist export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore

View File

@ -1,3 +1,4 @@
/Tests export-ignore
/phpunit.xml.dist export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore

View File

@ -1,2 +1,4 @@
/Tests export-ignore
/phpunit.xml.dist export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore

View File

@ -18,7 +18,7 @@ use Symfony\Component\Notifier\Message\MessageOptionsInterface;
*
* @see https://firebase.google.com/docs/cloud-messaging/xmpp-server-ref.html
*
* @experimental in 5.1
* @experimental in 5.2
*/
abstract class FirebaseOptions implements MessageOptionsInterface
{

View File

@ -24,7 +24,7 @@ use Symfony\Contracts\HttpClient\HttpClientInterface;
/**
* @author Jeroen Spee <https://github.com/Jeroeny>
*
* @experimental in 5.1
* @experimental in 5.2
*/
final class FirebaseTransport extends AbstractTransport
{

View File

@ -19,7 +19,7 @@ use Symfony\Component\Notifier\Transport\TransportInterface;
/**
* @author Jeroen Spee <https://github.com/Jeroeny>
*
* @experimental in 5.1
* @experimental in 5.2
*/
final class FirebaseTransportFactory extends AbstractTransportFactory
{

View File

@ -14,7 +14,7 @@ namespace Symfony\Component\Notifier\Bridge\Firebase\Notification;
use Symfony\Component\Notifier\Bridge\Firebase\FirebaseOptions;
/**
* @experimental in 5.1
* @experimental in 5.2
*/
final class AndroidNotification extends FirebaseOptions
{

View File

@ -14,7 +14,7 @@ namespace Symfony\Component\Notifier\Bridge\Firebase\Notification;
use Symfony\Component\Notifier\Bridge\Firebase\FirebaseOptions;
/**
* @experimental in 5.1
* @experimental in 5.2
*/
final class IOSNotification extends FirebaseOptions
{

View File

@ -14,7 +14,7 @@ namespace Symfony\Component\Notifier\Bridge\Firebase\Notification;
use Symfony\Component\Notifier\Bridge\Firebase\FirebaseOptions;
/**
* @experimental in 5.1
* @experimental in 5.2
*/
final class WebNotification extends FirebaseOptions
{

View File

@ -1,3 +1,4 @@
/Tests export-ignore
/phpunit.xml.dist export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore

View File

@ -23,7 +23,7 @@ use Symfony\Contracts\HttpClient\HttpClientInterface;
/**
* @author Antoine Makdessi <amakdessi@me.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
final class FreeMobileTransport extends AbstractTransport
{

View File

@ -20,7 +20,7 @@ use Symfony\Component\Notifier\Transport\TransportInterface;
/**
* @author Antoine Makdessi <amakdessi@me.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
final class FreeMobileTransportFactory extends AbstractTransportFactory
{

View File

@ -1,2 +1,4 @@
/Tests export-ignore
/phpunit.xml.dist export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore

View File

@ -23,7 +23,7 @@ use Symfony\Contracts\HttpClient\HttpClientInterface;
/**
* @author Emanuele Panzeri <thepanz@gmail.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
final class MattermostTransport extends AbstractTransport
{

View File

@ -19,7 +19,7 @@ use Symfony\Component\Notifier\Transport\TransportInterface;
/**
* @author Emanuele Panzeri <thepanz@gmail.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
final class MattermostTransportFactory extends AbstractTransportFactory
{

View File

@ -23,7 +23,7 @@ use Symfony\Contracts\HttpClient\HttpClientInterface;
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
final class NexmoTransport extends AbstractTransport
{

View File

@ -19,7 +19,7 @@ use Symfony\Component\Notifier\Transport\TransportInterface;
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
final class NexmoTransportFactory extends AbstractTransportFactory
{

View File

@ -1,3 +1,4 @@
/Tests export-ignore
/phpunit.xml.dist export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore

View File

@ -23,7 +23,7 @@ use Symfony\Contracts\HttpClient\HttpClientInterface;
/**
* @author Thomas Ferney <thomas.ferney@gmail.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
final class OvhCloudTransport extends AbstractTransport
{

View File

@ -19,7 +19,7 @@ use Symfony\Component\Notifier\Transport\TransportInterface;
/**
* @author Thomas Ferney <thomas.ferney@gmail.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
final class OvhCloudTransportFactory extends AbstractTransportFactory
{

View File

@ -1,2 +1,4 @@
/Tests export-ignore
/phpunit.xml.dist export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore

View File

@ -16,7 +16,7 @@ use Symfony\Component\Notifier\Message\MessageOptionsInterface;
/**
* @author Jeroen Spee <https://github.com/Jeroeny>
*
* @experimental in 5.1
* @experimental in 5.2
*
* @see https://rocket.chat/docs/administrator-guides/integrations/
*/

View File

@ -25,7 +25,7 @@ use Symfony\Contracts\HttpClient\HttpClientInterface;
*
* @internal
*
* @experimental in 5.1
* @experimental in 5.2
*/
final class RocketChatTransport extends AbstractTransport
{

View File

@ -19,7 +19,7 @@ use Symfony\Component\Notifier\Transport\TransportInterface;
/**
* @author Jeroen Spee <https://github.com/Jeroeny>
*
* @experimental in 5.1
* @experimental in 5.2
*/
final class RocketChatTransportFactory extends AbstractTransportFactory
{

View File

@ -1,3 +1,4 @@
/Tests export-ignore
/phpunit.xml.dist export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore

View File

@ -23,7 +23,7 @@ use Symfony\Contracts\HttpClient\HttpClientInterface;
/**
* @author Iliya Miroslavov Iliev <i.miroslavov@gmail.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
final class SinchTransport extends AbstractTransport
{

View File

@ -19,7 +19,7 @@ use Symfony\Component\Notifier\Transport\TransportInterface;
/**
* @author Iliya Miroslavov Iliev <i.miroslavov@gmail.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
final class SinchTransportFactory extends AbstractTransportFactory
{

View File

@ -1,3 +1,4 @@
/Tests export-ignore
/phpunit.xml.dist export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore

View File

@ -20,7 +20,7 @@ use Symfony\Component\Notifier\Notification\Notification;
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
final class SlackOptions implements MessageOptionsInterface
{

View File

@ -25,7 +25,7 @@ use Symfony\Contracts\HttpClient\HttpClientInterface;
*
* @internal
*
* @experimental in 5.1
* @experimental in 5.2
*/
final class SlackTransport extends AbstractTransport
{

View File

@ -19,7 +19,7 @@ use Symfony\Component\Notifier\Transport\TransportInterface;
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
final class SlackTransportFactory extends AbstractTransportFactory
{

View File

@ -1,3 +1,4 @@
/Tests export-ignore
/phpunit.xml.dist export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore

View File

@ -30,7 +30,7 @@ use Symfony\Contracts\HttpClient\HttpClientInterface;
*
* @internal
*
* @experimental in 5.1
* @experimental in 5.2
*/
final class TelegramTransport extends AbstractTransport
{

View File

@ -20,7 +20,7 @@ use Symfony\Component\Notifier\Transport\TransportInterface;
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
final class TelegramTransportFactory extends AbstractTransportFactory
{

View File

@ -1,3 +1,4 @@
/Tests export-ignore
/phpunit.xml.dist export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore

View File

@ -23,7 +23,7 @@ use Symfony\Contracts\HttpClient\HttpClientInterface;
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
final class TwilioTransport extends AbstractTransport
{

View File

@ -19,7 +19,7 @@ use Symfony\Component\Notifier\Transport\TransportInterface;
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
final class TwilioTransportFactory extends AbstractTransportFactory
{

View File

@ -18,7 +18,7 @@ use Symfony\Component\Notifier\Transport\TransportInterface;
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
abstract class AbstractChannel implements ChannelInterface
{

View File

@ -18,7 +18,7 @@ use Symfony\Component\Notifier\Recipient\RecipientInterface;
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
final class BrowserChannel implements ChannelInterface
{

View File

@ -17,7 +17,7 @@ use Symfony\Component\Notifier\Recipient\RecipientInterface;
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
interface ChannelInterface
{

View File

@ -16,7 +16,7 @@ use Symfony\Component\Notifier\Exception\InvalidArgumentException;
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
final class ChannelPolicy implements ChannelPolicyInterface
{

View File

@ -14,7 +14,7 @@ namespace Symfony\Component\Notifier\Channel;
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
interface ChannelPolicyInterface
{

View File

@ -19,7 +19,7 @@ use Symfony\Component\Notifier\Recipient\RecipientInterface;
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
class ChatChannel extends AbstractChannel
{

View File

@ -26,7 +26,7 @@ use Symfony\Component\Notifier\Recipient\RecipientInterface;
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
class EmailChannel implements ChannelInterface
{

View File

@ -20,7 +20,7 @@ use Symfony\Component\Notifier\Recipient\SmsRecipientInterface;
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
class SmsChannel extends AbstractChannel
{

View File

@ -23,7 +23,7 @@ use Symfony\Contracts\EventDispatcher\EventDispatcherInterface;
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
final class Chatter implements ChatterInterface
{

View File

@ -18,7 +18,7 @@ use Symfony\Component\Notifier\Transport\TransportInterface;
*
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
interface ChatterInterface extends TransportInterface
{

View File

@ -20,7 +20,7 @@ use Symfony\Component\Notifier\EventListener\NotificationLoggerListener;
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
final class NotificationDataCollector extends DataCollector
{

View File

@ -17,7 +17,7 @@ use Symfony\Contracts\EventDispatcher\Event;
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
final class MessageEvent extends Event
{

View File

@ -16,7 +16,7 @@ use Symfony\Component\Notifier\Message\MessageInterface;
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
class NotificationEvents
{

View File

@ -19,7 +19,7 @@ use Symfony\Contracts\Service\ResetInterface;
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
class NotificationLoggerListener implements EventSubscriberInterface, ResetInterface
{

View File

@ -21,7 +21,7 @@ use Symfony\Component\Notifier\Notifier;
*
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
class SendFailedMessageToNotifierListener implements EventSubscriberInterface
{

View File

@ -16,7 +16,7 @@ namespace Symfony\Component\Notifier\Exception;
*
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
interface ExceptionInterface extends \Throwable
{

View File

@ -14,7 +14,7 @@ namespace Symfony\Component\Notifier\Exception;
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
class IncompleteDsnException extends InvalidArgumentException
{

View File

@ -14,7 +14,7 @@ namespace Symfony\Component\Notifier\Exception;
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface
{

View File

@ -14,7 +14,7 @@ namespace Symfony\Component\Notifier\Exception;
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
class LogicException extends \LogicException implements ExceptionInterface
{

View File

@ -14,7 +14,7 @@ namespace Symfony\Component\Notifier\Exception;
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
class RuntimeException extends \RuntimeException implements ExceptionInterface
{

View File

@ -16,7 +16,7 @@ use Symfony\Contracts\HttpClient\ResponseInterface;
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
class TransportException extends RuntimeException implements TransportExceptionInterface
{

View File

@ -14,7 +14,7 @@ namespace Symfony\Component\Notifier\Exception;
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
interface TransportExceptionInterface extends ExceptionInterface
{

View File

@ -17,7 +17,7 @@ use Symfony\Component\Notifier\Transport\Dsn;
/**
* @author Konstantin Myakshin <molodchick@gmail.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
class UnsupportedSchemeException extends LogicException
{

View File

@ -16,7 +16,7 @@ use Symfony\Component\Notifier\Notification\Notification;
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
final class ChatMessage implements MessageInterface
{

View File

@ -23,7 +23,7 @@ use Symfony\Component\Notifier\Recipient\EmailRecipientInterface;
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
final class EmailMessage implements MessageInterface
{

View File

@ -14,7 +14,7 @@ namespace Symfony\Component\Notifier\Message;
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
interface MessageInterface
{

View File

@ -14,7 +14,7 @@ namespace Symfony\Component\Notifier\Message;
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
interface MessageOptionsInterface
{

View File

@ -18,7 +18,7 @@ use Symfony\Component\Notifier\Recipient\SmsRecipientInterface;
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
final class SmsMessage implements MessageInterface
{

View File

@ -18,7 +18,7 @@ use Symfony\Component\Notifier\Transport\TransportInterface;
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
final class MessageHandler
{

View File

@ -17,7 +17,7 @@ use Symfony\Component\Notifier\Recipient\RecipientInterface;
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
interface ChatNotificationInterface
{

View File

@ -17,7 +17,7 @@ use Symfony\Component\Notifier\Recipient\EmailRecipientInterface;
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
interface EmailNotificationInterface
{

View File

@ -18,7 +18,7 @@ use Symfony\Component\Notifier\Recipient\RecipientInterface;
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
class Notification
{

View File

@ -17,7 +17,7 @@ use Symfony\Component\Notifier\Recipient\SmsRecipientInterface;
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
interface SmsNotificationInterface
{

View File

@ -23,7 +23,7 @@ use Symfony\Component\Notifier\Recipient\RecipientInterface;
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
final class Notifier implements NotifierInterface
{

View File

@ -19,7 +19,7 @@ use Symfony\Component\Notifier\Recipient\RecipientInterface;
*
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
interface NotifierInterface
{

View File

@ -11,7 +11,7 @@ are not covered by Symfony's
Resources
---------
* [Documentation](https://symfony.com/doc/current/components/notifier.html)
* [Documentation](https://symfony.com/doc/current/notifier.html)
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
* [Report issues](https://github.com/symfony/symfony/issues) and
[send Pull Requests](https://github.com/symfony/symfony/pulls)

View File

@ -14,7 +14,7 @@ namespace Symfony\Component\Notifier\Recipient;
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
class NoRecipient implements RecipientInterface
{

View File

@ -17,7 +17,7 @@ use Symfony\Component\Notifier\Exception\InvalidArgumentException;
* @author Fabien Potencier <fabien@symfony.com>
* @author Jan Schädlich <jan.schaedlich@sensiolabs.de>
*
* @experimental in 5.1
* @experimental in 5.2
*/
class Recipient implements EmailRecipientInterface, SmsRecipientInterface
{

View File

@ -15,7 +15,7 @@ namespace Symfony\Component\Notifier\Recipient;
* @author Fabien Potencier <fabien@symfony.com>
* @author Jan Schädlich <jan.schaedlich@sensiolabs.de>
*
* @experimental in 5.1
* @experimental in 5.2
*/
interface SmsRecipientInterface extends RecipientInterface
{

View File

@ -23,7 +23,7 @@ use Symfony\Contracts\EventDispatcher\EventDispatcherInterface;
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
final class Texter implements TexterInterface
{

View File

@ -18,7 +18,7 @@ use Symfony\Component\Notifier\Transport\TransportInterface;
*
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
interface TexterInterface extends TransportInterface
{

View File

@ -42,7 +42,7 @@ use Symfony\Contracts\HttpClient\HttpClientInterface;
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
class Transport
{

View File

@ -24,7 +24,7 @@ use Symfony\Contracts\HttpClient\HttpClientInterface;
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
abstract class AbstractTransport implements TransportInterface
{

View File

@ -21,7 +21,7 @@ use Symfony\Contracts\HttpClient\HttpClientInterface;
* @author Konstantin Myakshin <molodchick@gmail.com>
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
abstract class AbstractTransportFactory implements TransportFactoryInterface
{

View File

@ -16,7 +16,7 @@ use Symfony\Component\Notifier\Exception\InvalidArgumentException;
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
final class Dsn
{

View File

@ -18,7 +18,7 @@ use Symfony\Component\Notifier\Message\MessageInterface;
*
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
class FailoverTransport extends RoundRobinTransport
{

View File

@ -22,7 +22,7 @@ use Symfony\Contracts\EventDispatcher\EventDispatcherInterface;
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
class NullTransport implements TransportInterface
{

View File

@ -16,7 +16,7 @@ use Symfony\Component\Notifier\Exception\UnsupportedSchemeException;
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
final class NullTransportFactory extends AbstractTransportFactory
{

View File

@ -22,7 +22,7 @@ use Symfony\Component\Notifier\Message\SentMessage;
*
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
class RoundRobinTransport implements TransportInterface
{

View File

@ -17,7 +17,7 @@ use Symfony\Component\Notifier\Exception\UnsupportedSchemeException;
/**
* @author Konstantin Myakshin <molodchick@gmail.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
interface TransportFactoryInterface
{

View File

@ -18,7 +18,7 @@ use Symfony\Component\Notifier\Message\SentMessage;
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
interface TransportInterface
{

View File

@ -19,7 +19,7 @@ use Symfony\Component\Notifier\Message\SentMessage;
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 5.1
* @experimental in 5.2
*/
final class Transports implements TransportInterface
{

View File

@ -24,7 +24,7 @@ use Symfony\Component\Security\Core\Security;
*
* @author Wouter de Jong <wouter@wouterj.nl>
*
* @experimental in Symfony 5.2
* @experimental in 5.2
*/
final class DefaultLoginRateLimiter extends AbstractRequestRateLimiter
{

View File

@ -2,4 +2,5 @@
/Resources/WcswidthDataGenerator.php export-ignore
/Tests export-ignore
/phpunit.xml.dist export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore

View File

@ -1,3 +1,4 @@
/Tests export-ignore
/phpunit.xml.dist export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore

View File

@ -12,7 +12,7 @@
namespace Symfony\Component\Uid;
/**
* @experimental in 5.1
* @experimental in 5.2
*
* @author Nicolas Grekas <p@tchwork.com>
*/

Some files were not shown because too many files have changed in this diff Show More