feature #32277 Remove @experimental annotations (fabpot)

This PR was merged into the 4.4 branch.

Discussion
----------

Remove @experimental annotations

| Q             | A
| ------------- | ---
| Branch?       | 4.4
| Bug fix?      | no
| New feature?  | no <!-- please update src/**/CHANGELOG.md files -->
| BC breaks?    | no     <!-- see https://symfony.com/bc -->
| Deprecations? | no <!-- please update UPGRADE-*.md and src/**/CHANGELOG.md files -->
| Tests pass?   | yes    <!-- please add some, will be required by reviewers -->
| Fixed tickets | n/a
| License       | MIT
| Doc PR        | n/a

Nothing can be marked as experimental in 4.4.

<!--
Replace this notice by a short README for your feature/bugfix. This will help people
understand your PR and can be used as a start for the documentation.

Additionally (see https://symfony.com/roadmap):
 - Bug fixes must be submitted against the lowest maintained branch where they apply
   (lowest branches are regularly merged to upper ones so they get the fixes too).
 - Features and deprecations must be submitted against branch 4.4.
 - Legacy code removals go to the master branch.
-->

Commits
-------

191cb52902 removed @experimental annotations
This commit is contained in:
Fabien Potencier 2019-06-29 18:46:49 +02:00
commit 64eaf7e3a6
233 changed files with 0 additions and 453 deletions

View File

@ -19,8 +19,6 @@ use Symfony\Component\Messenger\Middleware\StackInterface;
* Closes connection and therefore saves number of connections. * Closes connection and therefore saves number of connections.
* *
* @author Fuong <insidestyles@gmail.com> * @author Fuong <insidestyles@gmail.com>
*
* @experimental in 4.3
*/ */
class DoctrineCloseConnectionMiddleware extends AbstractDoctrineMiddleware class DoctrineCloseConnectionMiddleware extends AbstractDoctrineMiddleware
{ {

View File

@ -19,8 +19,6 @@ use Symfony\Component\Messenger\Middleware\StackInterface;
* Checks whether the connection is still open or reconnects otherwise. * Checks whether the connection is still open or reconnects otherwise.
* *
* @author Fuong <insidestyles@gmail.com> * @author Fuong <insidestyles@gmail.com>
*
* @experimental in 4.3
*/ */
class DoctrinePingConnectionMiddleware extends AbstractDoctrineMiddleware class DoctrinePingConnectionMiddleware extends AbstractDoctrineMiddleware
{ {

View File

@ -21,8 +21,6 @@ use Symfony\Component\Messenger\Stamp\HandledStamp;
* Wraps all handlers in a single doctrine transaction. * Wraps all handlers in a single doctrine transaction.
* *
* @author Tobias Nyholm <tobias.nyholm@gmail.com> * @author Tobias Nyholm <tobias.nyholm@gmail.com>
*
* @experimental in 4.3
*/ */
class DoctrineTransactionMiddleware extends AbstractDoctrineMiddleware class DoctrineTransactionMiddleware extends AbstractDoctrineMiddleware
{ {

View File

@ -18,8 +18,6 @@ use Twig\Environment;
/** /**
* @author Fabien Potencier <fabien@symfony.com> * @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 4.3
*/ */
final class BodyRenderer implements BodyRendererInterface final class BodyRenderer implements BodyRendererInterface
{ {

View File

@ -15,8 +15,6 @@ use Symfony\Component\Mime\Email;
/** /**
* @author Fabien Potencier <fabien@symfony.com> * @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 4.3
*/ */
class TemplatedEmail extends Email class TemplatedEmail extends Email
{ {

View File

@ -19,8 +19,6 @@ use Twig\Environment;
* @internal * @internal
* *
* @author Fabien Potencier <fabien@symfony.com> * @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 4.3
*/ */
final class WrappedTemplatedEmail final class WrappedTemplatedEmail
{ {

View File

@ -29,7 +29,6 @@ use Symfony\Contracts\Cache\TagAwareCacheInterface;
* @author André Rømcke <andre.romcke+symfony@gmail.com> * @author André Rømcke <andre.romcke+symfony@gmail.com>
* *
* @internal * @internal
* @experimental in 4.3
*/ */
abstract class AbstractTagAwareAdapter implements TagAwareAdapterInterface, TagAwareCacheInterface, LoggerAwareInterface, ResettableInterface abstract class AbstractTagAwareAdapter implements TagAwareAdapterInterface, TagAwareCacheInterface, LoggerAwareInterface, ResettableInterface
{ {

View File

@ -23,8 +23,6 @@ use Symfony\Component\Filesystem\Filesystem;
* *
* @author Nicolas Grekas <p@tchwork.com> * @author Nicolas Grekas <p@tchwork.com>
* @author André Rømcke <andre.romcke+symfony@gmail.com> * @author André Rømcke <andre.romcke+symfony@gmail.com>
*
* @experimental in 4.3
*/ */
class FilesystemTagAwareAdapter extends AbstractTagAwareAdapter implements PruneableInterface class FilesystemTagAwareAdapter extends AbstractTagAwareAdapter implements PruneableInterface
{ {

View File

@ -41,8 +41,6 @@ use Symfony\Component\Cache\Traits\RedisTrait;
* *
* @author Nicolas Grekas <p@tchwork.com> * @author Nicolas Grekas <p@tchwork.com>
* @author André Rømcke <andre.romcke+symfony@gmail.com> * @author André Rømcke <andre.romcke+symfony@gmail.com>
*
* @experimental in 4.3
*/ */
class RedisTagAwareAdapter extends AbstractTagAwareAdapter class RedisTagAwareAdapter extends AbstractTagAwareAdapter
{ {

View File

@ -31,8 +31,6 @@ use Symfony\Contracts\HttpClient\ResponseStreamInterface;
* HTTP/2 push when a curl version that supports it is installed. * HTTP/2 push when a curl version that supports it is installed.
* *
* @author Nicolas Grekas <p@tchwork.com> * @author Nicolas Grekas <p@tchwork.com>
*
* @experimental in 4.3
*/ */
final class CurlHttpClient implements HttpClientInterface, LoggerAwareInterface final class CurlHttpClient implements HttpClientInterface, LoggerAwareInterface
{ {

View File

@ -17,8 +17,6 @@ use Symfony\Contracts\HttpClient\Exception\ClientExceptionInterface;
* Represents a 4xx response. * Represents a 4xx response.
* *
* @author Nicolas Grekas <p@tchwork.com> * @author Nicolas Grekas <p@tchwork.com>
*
* @experimental in 4.3
*/ */
final class ClientException extends \RuntimeException implements ClientExceptionInterface final class ClientException extends \RuntimeException implements ClientExceptionInterface
{ {

View File

@ -15,8 +15,6 @@ use Symfony\Contracts\HttpClient\Exception\TransportExceptionInterface;
/** /**
* @author Nicolas Grekas <p@tchwork.com> * @author Nicolas Grekas <p@tchwork.com>
*
* @experimental in 4.3
*/ */
final class InvalidArgumentException extends \InvalidArgumentException implements TransportExceptionInterface final class InvalidArgumentException extends \InvalidArgumentException implements TransportExceptionInterface
{ {

View File

@ -17,8 +17,6 @@ use Symfony\Contracts\HttpClient\Exception\DecodingExceptionInterface;
* Thrown by responses' toArray() method when their content cannot be JSON-decoded. * Thrown by responses' toArray() method when their content cannot be JSON-decoded.
* *
* @author Nicolas Grekas <p@tchwork.com> * @author Nicolas Grekas <p@tchwork.com>
*
* @experimental in 4.3
*/ */
final class JsonException extends \JsonException implements DecodingExceptionInterface final class JsonException extends \JsonException implements DecodingExceptionInterface
{ {

View File

@ -17,8 +17,6 @@ use Symfony\Contracts\HttpClient\Exception\RedirectionExceptionInterface;
* Represents a 3xx response. * Represents a 3xx response.
* *
* @author Nicolas Grekas <p@tchwork.com> * @author Nicolas Grekas <p@tchwork.com>
*
* @experimental in 4.3
*/ */
final class RedirectionException extends \RuntimeException implements RedirectionExceptionInterface final class RedirectionException extends \RuntimeException implements RedirectionExceptionInterface
{ {

View File

@ -17,8 +17,6 @@ use Symfony\Contracts\HttpClient\Exception\ServerExceptionInterface;
* Represents a 5xx response. * Represents a 5xx response.
* *
* @author Nicolas Grekas <p@tchwork.com> * @author Nicolas Grekas <p@tchwork.com>
*
* @experimental in 4.3
*/ */
final class ServerException extends \RuntimeException implements ServerExceptionInterface final class ServerException extends \RuntimeException implements ServerExceptionInterface
{ {

View File

@ -15,8 +15,6 @@ use Symfony\Contracts\HttpClient\Exception\TransportExceptionInterface;
/** /**
* @author Nicolas Grekas <p@tchwork.com> * @author Nicolas Grekas <p@tchwork.com>
*
* @experimental in 4.3
*/ */
final class TransportException extends \RuntimeException implements TransportExceptionInterface final class TransportException extends \RuntimeException implements TransportExceptionInterface
{ {

View File

@ -17,8 +17,6 @@ use Symfony\Contracts\HttpClient\HttpClientInterface;
* A factory to instantiate the best possible HTTP client for the runtime. * A factory to instantiate the best possible HTTP client for the runtime.
* *
* @author Nicolas Grekas <p@tchwork.com> * @author Nicolas Grekas <p@tchwork.com>
*
* @experimental in 4.3
*/ */
final class HttpClient final class HttpClient
{ {

View File

@ -19,8 +19,6 @@ use Symfony\Component\HttpClient\Exception\InvalidArgumentException;
* All methods are static to prevent implementers from creating memory leaks via circular references. * All methods are static to prevent implementers from creating memory leaks via circular references.
* *
* @author Nicolas Grekas <p@tchwork.com> * @author Nicolas Grekas <p@tchwork.com>
*
* @experimental in 4.3
*/ */
trait HttpClientTrait trait HttpClientTrait
{ {

View File

@ -19,8 +19,6 @@ use Symfony\Contracts\HttpClient\HttpClientInterface;
* @see HttpClientInterface for a description of each options. * @see HttpClientInterface for a description of each options.
* *
* @author Nicolas Grekas <p@tchwork.com> * @author Nicolas Grekas <p@tchwork.com>
*
* @experimental in 4.3
*/ */
class HttpOptions class HttpOptions
{ {

View File

@ -29,8 +29,6 @@ use Symfony\Contracts\HttpClient\ResponseStreamInterface;
* but each request is opened synchronously. * but each request is opened synchronously.
* *
* @author Nicolas Grekas <p@tchwork.com> * @author Nicolas Grekas <p@tchwork.com>
*
* @experimental in 4.3
*/ */
final class NativeHttpClient implements HttpClientInterface, LoggerAwareInterface final class NativeHttpClient implements HttpClientInterface, LoggerAwareInterface
{ {

View File

@ -44,8 +44,6 @@ if (!interface_exists(ClientInterface::class)) {
* and stream factories with flex-provided autowiring aliases. * and stream factories with flex-provided autowiring aliases.
* *
* @author Nicolas Grekas <p@tchwork.com> * @author Nicolas Grekas <p@tchwork.com>
*
* @experimental in 4.3
*/ */
final class Psr18Client implements ClientInterface, RequestFactoryInterface, StreamFactoryInterface, UriFactoryInterface final class Psr18Client implements ClientInterface, RequestFactoryInterface, StreamFactoryInterface, UriFactoryInterface
{ {

View File

@ -20,8 +20,6 @@ use Symfony\Contracts\HttpClient\ResponseStreamInterface;
* Auto-configure the default options based on the requested URL. * Auto-configure the default options based on the requested URL.
* *
* @author Anthony Martin <anthony.martin@sensiolabs.com> * @author Anthony Martin <anthony.martin@sensiolabs.com>
*
* @experimental in 4.3
*/ */
class ScopingHttpClient implements HttpClientInterface class ScopingHttpClient implements HttpClientInterface
{ {

View File

@ -21,8 +21,6 @@ use Symfony\Contracts\HttpClient\HttpClientInterface;
/** /**
* @author Kevin Verschaeve * @author Kevin Verschaeve
*
* @experimental in 4.3
*/ */
class SesTransport extends AbstractApiTransport class SesTransport extends AbstractApiTransport
{ {

View File

@ -20,8 +20,6 @@ use Symfony\Contracts\HttpClient\HttpClientInterface;
/** /**
* @author Kevin Verschaeve * @author Kevin Verschaeve
*
* @experimental in 4.3
*/ */
class SesTransport extends AbstractHttpTransport class SesTransport extends AbstractHttpTransport
{ {

View File

@ -17,8 +17,6 @@ use Symfony\Contracts\EventDispatcher\EventDispatcherInterface;
/** /**
* @author Kevin Verschaeve * @author Kevin Verschaeve
*
* @experimental in 4.3
*/ */
class SesTransport extends EsmtpTransport class SesTransport extends EsmtpTransport
{ {

View File

@ -17,8 +17,6 @@ use Symfony\Contracts\EventDispatcher\EventDispatcherInterface;
/** /**
* @author Kevin Verschaeve * @author Kevin Verschaeve
*
* @experimental in 4.3
*/ */
class GmailTransport extends EsmtpTransport class GmailTransport extends EsmtpTransport
{ {

View File

@ -21,7 +21,6 @@ use Symfony\Contracts\HttpClient\HttpClientInterface;
/** /**
* @author Kevin Verschaeve * @author Kevin Verschaeve
* @experimental in 4.3
*/ */
class MandrillTransport extends AbstractApiTransport class MandrillTransport extends AbstractApiTransport
{ {

View File

@ -20,8 +20,6 @@ use Symfony\Contracts\HttpClient\HttpClientInterface;
/** /**
* @author Kevin Verschaeve * @author Kevin Verschaeve
*
* @experimental in 4.3
*/ */
class MandrillTransport extends AbstractHttpTransport class MandrillTransport extends AbstractHttpTransport
{ {

View File

@ -17,8 +17,6 @@ use Symfony\Contracts\EventDispatcher\EventDispatcherInterface;
/** /**
* @author Kevin Verschaeve * @author Kevin Verschaeve
*
* @experimental in 4.3
*/ */
class MandrillTransport extends EsmtpTransport class MandrillTransport extends EsmtpTransport
{ {

View File

@ -22,8 +22,6 @@ use Symfony\Contracts\HttpClient\HttpClientInterface;
/** /**
* @author Kevin Verschaeve * @author Kevin Verschaeve
*
* @experimental in 4.3
*/ */
class MailgunTransport extends AbstractApiTransport class MailgunTransport extends AbstractApiTransport
{ {

View File

@ -22,8 +22,6 @@ use Symfony\Contracts\HttpClient\HttpClientInterface;
/** /**
* @author Kevin Verschaeve * @author Kevin Verschaeve
*
* @experimental in 4.3
*/ */
class MailgunTransport extends AbstractHttpTransport class MailgunTransport extends AbstractHttpTransport
{ {

View File

@ -17,8 +17,6 @@ use Symfony\Contracts\EventDispatcher\EventDispatcherInterface;
/** /**
* @author Kevin Verschaeve * @author Kevin Verschaeve
*
* @experimental in 4.3
*/ */
class MailgunTransport extends EsmtpTransport class MailgunTransport extends EsmtpTransport
{ {

View File

@ -21,8 +21,6 @@ use Symfony\Contracts\HttpClient\HttpClientInterface;
/** /**
* @author Kevin Verschaeve * @author Kevin Verschaeve
*
* @experimental in 4.3
*/ */
class PostmarkTransport extends AbstractApiTransport class PostmarkTransport extends AbstractApiTransport
{ {

View File

@ -17,8 +17,6 @@ use Symfony\Contracts\EventDispatcher\EventDispatcherInterface;
/** /**
* @author Kevin Verschaeve * @author Kevin Verschaeve
*
* @experimental in 4.3
*/ */
class PostmarkTransport extends EsmtpTransport class PostmarkTransport extends EsmtpTransport
{ {

View File

@ -22,8 +22,6 @@ use Symfony\Contracts\HttpClient\HttpClientInterface;
/** /**
* @author Kevin Verschaeve * @author Kevin Verschaeve
*
* @experimental in 4.3
*/ */
class SendgridTransport extends AbstractApiTransport class SendgridTransport extends AbstractApiTransport
{ {

View File

@ -17,8 +17,6 @@ use Symfony\Contracts\EventDispatcher\EventDispatcherInterface;
/** /**
* @author Kevin Verschaeve * @author Kevin Verschaeve
*
* @experimental in 4.3
*/ */
class SendgridTransport extends EsmtpTransport class SendgridTransport extends EsmtpTransport
{ {

View File

@ -19,8 +19,6 @@ use Symfony\Component\Mime\Message;
/** /**
* @author Fabien Potencier <fabien@symfony.com> * @author Fabien Potencier <fabien@symfony.com>
* *
* @experimental in 4.3
*
* @internal * @internal
*/ */
final class DelayedSmtpEnvelope extends SmtpEnvelope final class DelayedSmtpEnvelope extends SmtpEnvelope

View File

@ -19,8 +19,6 @@ use Symfony\Component\Mime\RawMessage;
* Allows the transformation of a Message. * Allows the transformation of a Message.
* *
* @author Fabien Potencier <fabien@symfony.com> * @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 4.3
*/ */
class MessageEvent extends Event class MessageEvent extends Event
{ {

View File

@ -19,8 +19,6 @@ use Symfony\Component\Mime\Address;
* Manipulates the Envelope of a Message. * Manipulates the Envelope of a Message.
* *
* @author Fabien Potencier <fabien@symfony.com> * @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 4.3
*/ */
class EnvelopeListener implements EventSubscriberInterface class EnvelopeListener implements EventSubscriberInterface
{ {

View File

@ -21,8 +21,6 @@ use Symfony\Component\Mime\Message;
* Manipulates the headers and the body of a Message. * Manipulates the headers and the body of a Message.
* *
* @author Fabien Potencier <fabien@symfony.com> * @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 4.3
*/ */
class MessageListener implements EventSubscriberInterface class MessageListener implements EventSubscriberInterface
{ {

View File

@ -15,8 +15,6 @@ namespace Symfony\Component\Mailer\Exception;
* Exception interface for all exceptions thrown by the component. * Exception interface for all exceptions thrown by the component.
* *
* @author Fabien Potencier <fabien@symfony.com> * @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 4.3
*/ */
interface ExceptionInterface extends \Throwable interface ExceptionInterface extends \Throwable
{ {

View File

@ -13,8 +13,6 @@ namespace Symfony\Component\Mailer\Exception;
/** /**
* @author Fabien Potencier <fabien@symfony.com> * @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 4.3
*/ */
class HttpTransportException extends TransportException class HttpTransportException extends TransportException
{ {

View File

@ -13,8 +13,6 @@ namespace Symfony\Component\Mailer\Exception;
/** /**
* @author Fabien Potencier <fabien@symfony.com> * @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 4.3
*/ */
class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface
{ {

View File

@ -13,8 +13,6 @@ namespace Symfony\Component\Mailer\Exception;
/** /**
* @author Fabien Potencier <fabien@symfony.com> * @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 4.3
*/ */
class LogicException extends \LogicException implements ExceptionInterface class LogicException extends \LogicException implements ExceptionInterface
{ {

View File

@ -13,8 +13,6 @@ namespace Symfony\Component\Mailer\Exception;
/** /**
* @author Fabien Potencier <fabien@symfony.com> * @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 4.3
*/ */
class RuntimeException extends \RuntimeException implements ExceptionInterface class RuntimeException extends \RuntimeException implements ExceptionInterface
{ {

View File

@ -13,8 +13,6 @@ namespace Symfony\Component\Mailer\Exception;
/** /**
* @author Fabien Potencier <fabien@symfony.com> * @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 4.3
*/ */
class TransportException extends RuntimeException implements TransportExceptionInterface class TransportException extends RuntimeException implements TransportExceptionInterface
{ {

View File

@ -13,8 +13,6 @@ namespace Symfony\Component\Mailer\Exception;
/** /**
* @author Fabien Potencier <fabien@symfony.com> * @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 4.3
*/ */
interface TransportExceptionInterface extends ExceptionInterface interface TransportExceptionInterface extends ExceptionInterface
{ {

View File

@ -18,8 +18,6 @@ use Symfony\Component\Mime\RawMessage;
/** /**
* @author Fabien Potencier <fabien@symfony.com> * @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 4.3
*/ */
class Mailer implements MailerInterface class Mailer implements MailerInterface
{ {

View File

@ -20,8 +20,6 @@ use Symfony\Component\Mime\RawMessage;
* Implementations must support synchronous and asynchronous sending. * Implementations must support synchronous and asynchronous sending.
* *
* @author Fabien Potencier <fabien@symfony.com> * @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 4.3
*/ */
interface MailerInterface interface MailerInterface
{ {

View File

@ -15,8 +15,6 @@ use Symfony\Component\Mailer\Transport\TransportInterface;
/** /**
* @author Fabien Potencier <fabien@symfony.com> * @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 4.3
*/ */
class MessageHandler class MessageHandler
{ {

View File

@ -16,8 +16,6 @@ use Symfony\Component\Mime\RawMessage;
/** /**
* @author Fabien Potencier <fabien@symfony.com> * @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 4.3
*/ */
class SendEmailMessage class SendEmailMessage
{ {

View File

@ -16,8 +16,6 @@ use Symfony\Component\Mime\RawMessage;
/** /**
* @author Fabien Potencier <fabien@symfony.com> * @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 4.3
*/ */
class SentMessage class SentMessage
{ {

View File

@ -17,8 +17,6 @@ use Symfony\Component\Mime\RawMessage;
/** /**
* @author Fabien Potencier <fabien@symfony.com> * @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 4.3
*/ */
class SmtpEnvelope class SmtpEnvelope
{ {

View File

@ -26,8 +26,6 @@ use Symfony\Contracts\HttpClient\HttpClientInterface;
/** /**
* @author Fabien Potencier <fabien@symfony.com> * @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 4.3
*/ */
class Transport class Transport
{ {

View File

@ -25,8 +25,6 @@ use Symfony\Contracts\EventDispatcher\EventDispatcherInterface;
/** /**
* @author Fabien Potencier <fabien@symfony.com> * @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 4.3
*/ */
abstract class AbstractTransport implements TransportInterface abstract class AbstractTransport implements TransportInterface
{ {

View File

@ -15,8 +15,6 @@ namespace Symfony\Component\Mailer\Transport;
* Uses several Transports using a failover algorithm. * Uses several Transports using a failover algorithm.
* *
* @author Fabien Potencier <fabien@symfony.com> * @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 4.3
*/ */
class FailoverTransport extends RoundRobinTransport class FailoverTransport extends RoundRobinTransport
{ {

View File

@ -19,8 +19,6 @@ use Symfony\Contracts\HttpClient\HttpClientInterface;
/** /**
* @author Victor Bocharsky <victor@symfonycasts.com> * @author Victor Bocharsky <victor@symfonycasts.com>
*
* @experimental in 4.3
*/ */
abstract class AbstractHttpTransport extends AbstractTransport abstract class AbstractHttpTransport extends AbstractTransport
{ {

View File

@ -25,8 +25,6 @@ use Symfony\Contracts\HttpClient\HttpClientInterface;
/** /**
* @author Fabien Potencier <fabien@symfony.com> * @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 4.3
*/ */
abstract class AbstractApiTransport extends AbstractTransport abstract class AbstractApiTransport extends AbstractTransport
{ {

View File

@ -17,8 +17,6 @@ use Symfony\Component\Mailer\SentMessage;
* Pretends messages have been sent, but just ignores them. * Pretends messages have been sent, but just ignores them.
* *
* @author Fabien Potencier <fabien@symfony.com> * @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 4.3
*/ */
final class NullTransport extends AbstractTransport final class NullTransport extends AbstractTransport
{ {

View File

@ -21,8 +21,6 @@ use Symfony\Component\Mime\RawMessage;
* Uses several Transports using a round robin algorithm. * Uses several Transports using a round robin algorithm.
* *
* @author Fabien Potencier <fabien@symfony.com> * @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 4.3
*/ */
class RoundRobinTransport implements TransportInterface class RoundRobinTransport implements TransportInterface
{ {

View File

@ -29,8 +29,6 @@ use Symfony\Contracts\EventDispatcher\EventDispatcherInterface;
* *
* @author Fabien Potencier <fabien@symfony.com> * @author Fabien Potencier <fabien@symfony.com>
* @author Chris Corbyn * @author Chris Corbyn
*
* @experimental in 4.3
*/ */
class SendmailTransport extends AbstractTransport class SendmailTransport extends AbstractTransport
{ {

View File

@ -18,8 +18,6 @@ use Symfony\Component\Mailer\Transport\Smtp\EsmtpTransport;
* An Authentication mechanism. * An Authentication mechanism.
* *
* @author Chris Corbyn * @author Chris Corbyn
*
* @experimental in 4.3
*/ */
interface AuthenticatorInterface interface AuthenticatorInterface
{ {

View File

@ -17,8 +17,6 @@ use Symfony\Component\Mailer\Transport\Smtp\EsmtpTransport;
* Handles CRAM-MD5 authentication. * Handles CRAM-MD5 authentication.
* *
* @author Chris Corbyn * @author Chris Corbyn
*
* @experimental in 4.3
*/ */
class CramMd5Authenticator implements AuthenticatorInterface class CramMd5Authenticator implements AuthenticatorInterface
{ {

View File

@ -17,8 +17,6 @@ use Symfony\Component\Mailer\Transport\Smtp\EsmtpTransport;
* Handles LOGIN authentication. * Handles LOGIN authentication.
* *
* @author Chris Corbyn * @author Chris Corbyn
*
* @experimental in 4.3
*/ */
class LoginAuthenticator implements AuthenticatorInterface class LoginAuthenticator implements AuthenticatorInterface
{ {

View File

@ -17,8 +17,6 @@ use Symfony\Component\Mailer\Transport\Smtp\EsmtpTransport;
* Handles PLAIN authentication. * Handles PLAIN authentication.
* *
* @author Chris Corbyn * @author Chris Corbyn
*
* @experimental in 4.3
*/ */
class PlainAuthenticator implements AuthenticatorInterface class PlainAuthenticator implements AuthenticatorInterface
{ {

View File

@ -19,8 +19,6 @@ use Symfony\Component\Mailer\Transport\Smtp\EsmtpTransport;
* @author xu.li<AthenaLightenedMyPath@gmail.com> * @author xu.li<AthenaLightenedMyPath@gmail.com>
* *
* @see https://developers.google.com/google-apps/gmail/xoauth2_protocol * @see https://developers.google.com/google-apps/gmail/xoauth2_protocol
*
* @experimental in 4.3
*/ */
class XOAuth2Authenticator implements AuthenticatorInterface class XOAuth2Authenticator implements AuthenticatorInterface
{ {

View File

@ -23,8 +23,6 @@ use Symfony\Contracts\EventDispatcher\EventDispatcherInterface;
* *
* @author Fabien Potencier <fabien@symfony.com> * @author Fabien Potencier <fabien@symfony.com>
* @author Chris Corbyn * @author Chris Corbyn
*
* @experimental in 4.3
*/ */
class EsmtpTransport extends SmtpTransport class EsmtpTransport extends SmtpTransport
{ {

View File

@ -28,8 +28,6 @@ use Symfony\Contracts\EventDispatcher\EventDispatcherInterface;
* *
* @author Fabien Potencier <fabien@symfony.com> * @author Fabien Potencier <fabien@symfony.com>
* @author Chris Corbyn * @author Chris Corbyn
*
* @experimental in 4.3
*/ */
class SmtpTransport extends AbstractTransport class SmtpTransport extends AbstractTransport
{ {

View File

@ -21,8 +21,6 @@ use Symfony\Component\Mailer\Exception\TransportException;
* @author Chris Corbyn * @author Chris Corbyn
* *
* @internal * @internal
*
* @experimental in 4.3
*/ */
abstract class AbstractStream abstract class AbstractStream
{ {

View File

@ -20,8 +20,6 @@ use Symfony\Component\Mailer\Exception\TransportException;
* @author Chris Corbyn * @author Chris Corbyn
* *
* @internal * @internal
*
* @experimental in 4.3
*/ */
final class ProcessStream extends AbstractStream final class ProcessStream extends AbstractStream
{ {

View File

@ -20,8 +20,6 @@ use Symfony\Component\Mailer\Exception\TransportException;
* @author Chris Corbyn * @author Chris Corbyn
* *
* @internal * @internal
*
* @experimental in 4.3
*/ */
final class SocketStream extends AbstractStream final class SocketStream extends AbstractStream
{ {

View File

@ -23,8 +23,6 @@ use Symfony\Component\Mime\RawMessage;
* as they allow asynchronous sending. * as they allow asynchronous sending.
* *
* @author Fabien Potencier <fabien@symfony.com> * @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 4.3
*/ */
interface TransportInterface interface TransportInterface
{ {

View File

@ -25,7 +25,6 @@ use Symfony\Component\Messenger\Transport\Receiver\ReceiverInterface;
* @author Ryan Weaver <ryan@symfonycasts.com> * @author Ryan Weaver <ryan@symfonycasts.com>
* *
* @internal * @internal
* @experimental in 4.3
*/ */
abstract class AbstractFailedMessagesCommand extends Command abstract class AbstractFailedMessagesCommand extends Command
{ {

View File

@ -33,8 +33,6 @@ use Symfony\Contracts\EventDispatcher\EventDispatcherInterface;
/** /**
* @author Samuel Roze <samuel.roze@gmail.com> * @author Samuel Roze <samuel.roze@gmail.com>
*
* @experimental in 4.3
*/ */
class ConsumeMessagesCommand extends Command class ConsumeMessagesCommand extends Command
{ {

View File

@ -22,8 +22,6 @@ use Symfony\Component\Console\Style\SymfonyStyle;
* A console command to debug Messenger information. * A console command to debug Messenger information.
* *
* @author Roland Franssen <franssen.roland@gmail.com> * @author Roland Franssen <franssen.roland@gmail.com>
*
* @experimental in 4.3
*/ */
class DebugCommand extends Command class DebugCommand extends Command
{ {

View File

@ -23,8 +23,6 @@ use Symfony\Component\Messenger\Transport\Receiver\ReceiverInterface;
/** /**
* @author Ryan Weaver <ryan@symfonycasts.com> * @author Ryan Weaver <ryan@symfonycasts.com>
*
* @experimental in 4.3
*/ */
class FailedMessagesRemoveCommand extends AbstractFailedMessagesCommand class FailedMessagesRemoveCommand extends AbstractFailedMessagesCommand
{ {

View File

@ -32,8 +32,6 @@ use Symfony\Component\Messenger\Worker;
/** /**
* @author Ryan Weaver <ryan@symfonycasts.com> * @author Ryan Weaver <ryan@symfonycasts.com>
*
* @experimental in 4.3
*/ */
class FailedMessagesRetryCommand extends AbstractFailedMessagesCommand class FailedMessagesRetryCommand extends AbstractFailedMessagesCommand
{ {

View File

@ -23,8 +23,6 @@ use Symfony\Component\Messenger\Transport\Receiver\ListableReceiverInterface;
/** /**
* @author Ryan Weaver <ryan@symfonycasts.com> * @author Ryan Weaver <ryan@symfonycasts.com>
*
* @experimental in 4.3
*/ */
class FailedMessagesShowCommand extends AbstractFailedMessagesCommand class FailedMessagesShowCommand extends AbstractFailedMessagesCommand
{ {

View File

@ -21,8 +21,6 @@ use Symfony\Component\Messenger\Worker\StopWhenRestartSignalIsReceived;
/** /**
* @author Ryan Weaver <ryan@symfonycasts.com> * @author Ryan Weaver <ryan@symfonycasts.com>
*
* @experimental in 4.3
*/ */
class StopWorkersCommand extends Command class StopWorkersCommand extends Command
{ {

View File

@ -20,8 +20,6 @@ use Symfony\Component\VarDumper\Caster\ClassStub;
/** /**
* @author Samuel Roze <samuel.roze@gmail.com> * @author Samuel Roze <samuel.roze@gmail.com>
*
* @experimental in 4.3
*/ */
class MessengerDataCollector extends DataCollector implements LateDataCollectorInterface class MessengerDataCollector extends DataCollector implements LateDataCollectorInterface
{ {

View File

@ -27,8 +27,6 @@ use Symfony\Component\Messenger\Transport\Receiver\ReceiverInterface;
/** /**
* @author Samuel Roze <samuel.roze@gmail.com> * @author Samuel Roze <samuel.roze@gmail.com>
*
* @experimental in 4.3
*/ */
class MessengerPass implements CompilerPassInterface class MessengerPass implements CompilerPassInterface
{ {

View File

@ -17,8 +17,6 @@ use Symfony\Component\Messenger\Stamp\StampInterface;
* A message wrapped in an envelope with stamps (configurations, markers, ...). * A message wrapped in an envelope with stamps (configurations, markers, ...).
* *
* @author Maxime Steinhausser <maxime.steinhausser@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com>
*
* @experimental in 4.3
*/ */
final class Envelope final class Envelope
{ {

View File

@ -14,7 +14,6 @@ namespace Symfony\Component\Messenger\Event;
use Symfony\Component\Messenger\Envelope; use Symfony\Component\Messenger\Envelope;
/** /**
* @experimental in 4.3
*/ */
abstract class AbstractWorkerMessageEvent abstract class AbstractWorkerMessageEvent
{ {

View File

@ -17,8 +17,6 @@ use Symfony\Component\Messenger\Envelope;
* Dispatched when a message was received from a transport and handling failed. * Dispatched when a message was received from a transport and handling failed.
* *
* The event name is the class name. * The event name is the class name.
*
* @experimental in 4.3
*/ */
class WorkerMessageFailedEvent extends AbstractWorkerMessageEvent class WorkerMessageFailedEvent extends AbstractWorkerMessageEvent
{ {

View File

@ -15,8 +15,6 @@ namespace Symfony\Component\Messenger\Event;
* Dispatched after a message was received from a transport and successfully handled. * Dispatched after a message was received from a transport and successfully handled.
* *
* The event name is the class name. * The event name is the class name.
*
* @experimental in 4.3
*/ */
class WorkerMessageHandledEvent extends AbstractWorkerMessageEvent class WorkerMessageHandledEvent extends AbstractWorkerMessageEvent
{ {

View File

@ -15,8 +15,6 @@ namespace Symfony\Component\Messenger\Event;
* Dispatched when a message was received from a transport but before sent to the bus. * Dispatched when a message was received from a transport but before sent to the bus.
* *
* The event name is the class name. * The event name is the class name.
*
* @experimental in 4.3
*/ */
class WorkerMessageReceivedEvent extends AbstractWorkerMessageEvent class WorkerMessageReceivedEvent extends AbstractWorkerMessageEvent
{ {

View File

@ -15,8 +15,6 @@ namespace Symfony\Component\Messenger\Event;
* Dispatched when a worker has been stopped. * Dispatched when a worker has been stopped.
* *
* @author Robin Chalas <robin.chalas@gmail.com> * @author Robin Chalas <robin.chalas@gmail.com>
*
* @experimental in 4.3
*/ */
class WorkerStoppedEvent class WorkerStoppedEvent
{ {

View File

@ -26,8 +26,6 @@ use Symfony\Component\Messenger\Stamp\TransportMessageIdStamp;
* Sends a rejected message to a "failure transport". * Sends a rejected message to a "failure transport".
* *
* @author Ryan Weaver <ryan@symfonycasts.com> * @author Ryan Weaver <ryan@symfonycasts.com>
*
* @experimental in 4.3
*/ */
class SendFailedMessageToFailureTransportListener implements EventSubscriberInterface class SendFailedMessageToFailureTransportListener implements EventSubscriberInterface
{ {

View File

@ -15,8 +15,6 @@ namespace Symfony\Component\Messenger\Exception;
* Base Message component's exception. * Base Message component's exception.
* *
* @author Samuel Roze <samuel.roze@gmail.com> * @author Samuel Roze <samuel.roze@gmail.com>
*
* @experimental in 4.3
*/ */
interface ExceptionInterface extends \Throwable interface ExceptionInterface extends \Throwable
{ {

View File

@ -13,8 +13,6 @@ namespace Symfony\Component\Messenger\Exception;
/** /**
* @author Yonel Ceruto <yonelceruto@gmail.com> * @author Yonel Ceruto <yonelceruto@gmail.com>
*
* @experimental in 4.3
*/ */
class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface
{ {

View File

@ -13,8 +13,6 @@ namespace Symfony\Component\Messenger\Exception;
/** /**
* @author Roland Franssen <franssen.roland@gmail.com> * @author Roland Franssen <franssen.roland@gmail.com>
*
* @experimental in 4.3
*/ */
class LogicException extends \LogicException implements ExceptionInterface class LogicException extends \LogicException implements ExceptionInterface
{ {

View File

@ -13,8 +13,6 @@ namespace Symfony\Component\Messenger\Exception;
/** /**
* Thrown when a message cannot be decoded in a serializer. * Thrown when a message cannot be decoded in a serializer.
*
* @experimental in 4.3
*/ */
class MessageDecodingFailedException extends InvalidArgumentException class MessageDecodingFailedException extends InvalidArgumentException
{ {

View File

@ -13,8 +13,6 @@ namespace Symfony\Component\Messenger\Exception;
/** /**
* @author Samuel Roze <samuel.roze@gmail.com> * @author Samuel Roze <samuel.roze@gmail.com>
*
* @experimental in 4.3
*/ */
class NoHandlerForMessageException extends LogicException class NoHandlerForMessageException extends LogicException
{ {

View File

@ -13,8 +13,6 @@ namespace Symfony\Component\Messenger\Exception;
/** /**
* @author Fabien Potencier <fabien@symfony.com> * @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 4.3
*/ */
class RuntimeException extends \RuntimeException implements ExceptionInterface class RuntimeException extends \RuntimeException implements ExceptionInterface
{ {

View File

@ -13,8 +13,6 @@ namespace Symfony\Component\Messenger\Exception;
/** /**
* @author Eric Masoero <em@studeal.fr> * @author Eric Masoero <em@studeal.fr>
*
* @experimental in 4.3
*/ */
class TransportException extends RuntimeException class TransportException extends RuntimeException
{ {

View File

@ -13,8 +13,6 @@ namespace Symfony\Component\Messenger\Exception;
/** /**
* @author Ryan Weaver <ryan@symfonycasts.com> * @author Ryan Weaver <ryan@symfonycasts.com>
*
* @experimental in 4.3
*/ */
class UnknownSenderException extends InvalidArgumentException class UnknownSenderException extends InvalidArgumentException
{ {

View File

@ -18,8 +18,6 @@ namespace Symfony\Component\Messenger\Exception;
* and the message should not be retried, a handler can throw such an exception. * and the message should not be retried, a handler can throw such an exception.
* *
* @author Tobias Schultze <http://tobion.de> * @author Tobias Schultze <http://tobion.de>
*
* @experimental in 4.3
*/ */
interface UnrecoverableExceptionInterface extends \Throwable interface UnrecoverableExceptionInterface extends \Throwable
{ {

View File

@ -15,8 +15,6 @@ namespace Symfony\Component\Messenger\Exception;
* A concrete implementation of UnrecoverableExceptionInterface that can be used directly. * A concrete implementation of UnrecoverableExceptionInterface that can be used directly.
* *
* @author Frederic Bouchery <frederic@bouchery.fr> * @author Frederic Bouchery <frederic@bouchery.fr>
*
* @experimental in 4.3
*/ */
class UnrecoverableMessageHandlingException extends RuntimeException implements UnrecoverableExceptionInterface class UnrecoverableMessageHandlingException extends RuntimeException implements UnrecoverableExceptionInterface
{ {

View File

@ -15,8 +15,6 @@ use Symfony\Component\Validator\ConstraintViolationListInterface;
/** /**
* @author Tobias Nyholm <tobias.nyholm@gmail.com> * @author Tobias Nyholm <tobias.nyholm@gmail.com>
*
* @experimental in 4.3
*/ */
class ValidationFailedException extends RuntimeException class ValidationFailedException extends RuntimeException
{ {

View File

@ -18,8 +18,6 @@ use Symfony\Component\Messenger\Stamp\HandledStamp;
* Leverages a message bus to expect a single, synchronous message handling and return its result. * Leverages a message bus to expect a single, synchronous message handling and return its result.
* *
* @author Maxime Steinhausser <maxime.steinhausser@gmail.com> * @author Maxime Steinhausser <maxime.steinhausser@gmail.com>
*
* @experimental in 4.3
*/ */
trait HandleTrait trait HandleTrait
{ {

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