Updated "experimental" annotations for 4.3

This commit is contained in:
Nicolas Grekas 2019-05-28 13:49:01 +02:00
parent 08d9d43a0b
commit 3a508e3258
53 changed files with 53 additions and 53 deletions

View File

@ -22,7 +22,7 @@ use Symfony\Component\Messenger\Middleware\StackInterface;
*
* @author Tobias Nyholm <tobias.nyholm@gmail.com>
*
* @experimental in 4.2
* @experimental in 4.3
*/
class DoctrineTransactionMiddleware implements MiddlewareInterface
{

View File

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

View File

@ -23,7 +23,7 @@ use Symfony\Component\Console\Style\SymfonyStyle;
*
* @author Roland Franssen <franssen.roland@gmail.com>
*
* @experimental in 4.2
* @experimental in 4.3
*/
class DebugCommand extends Command
{

View File

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

View File

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

View File

@ -18,7 +18,7 @@ use Symfony\Component\Messenger\Stamp\StampInterface;
*
* @author Maxime Steinhausser <maxime.steinhausser@gmail.com>
*
* @experimental in 4.2
* @experimental in 4.3
*/
final class Envelope
{

View File

@ -16,7 +16,7 @@ namespace Symfony\Component\Messenger\Exception;
*
* @author Samuel Roze <samuel.roze@gmail.com>
*
* @experimental in 4.2
* @experimental in 4.3
*/
interface ExceptionInterface extends \Throwable
{

View File

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

View File

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

View File

@ -14,7 +14,7 @@ namespace Symfony\Component\Messenger\Exception;
/**
* @author Samuel Roze <samuel.roze@gmail.com>
*
* @experimental in 4.2
* @experimental in 4.3
*/
class NoHandlerForMessageException extends \LogicException implements ExceptionInterface
{

View File

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

View File

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

View File

@ -16,7 +16,7 @@ use Symfony\Component\Validator\ConstraintViolationListInterface;
/**
* @author Tobias Nyholm <tobias.nyholm@gmail.com>
*
* @experimental in 4.2
* @experimental in 4.3
*/
class ValidationFailedException extends \RuntimeException implements ExceptionInterface
{

View File

@ -19,7 +19,7 @@ use Symfony\Component\Messenger\Stamp\HandledStamp;
*
* @author Maxime Steinhausser <maxime.steinhausser@gmail.com>
*
* @experimental in 4.2
* @experimental in 4.3
*/
trait HandleTrait
{

View File

@ -20,7 +20,7 @@ use Symfony\Component\Messenger\Stamp\ReceivedStamp;
* @author Nicolas Grekas <p@tchwork.com>
* @author Samuel Roze <samuel.roze@gmail.com>
*
* @experimental in 4.2
* @experimental in 4.3
*/
class HandlersLocator implements HandlersLocatorInterface
{

View File

@ -18,7 +18,7 @@ use Symfony\Component\Messenger\Envelope;
*
* @author Nicolas Grekas <p@tchwork.com>
*
* @experimental in 4.2
* @experimental in 4.3
*/
interface HandlersLocatorInterface
{

View File

@ -16,7 +16,7 @@ namespace Symfony\Component\Messenger\Handler;
*
* @author Samuel Roze <samuel.roze@gmail.com>
*
* @experimental in 4.2
* @experimental in 4.3
*/
interface MessageHandlerInterface
{

View File

@ -16,7 +16,7 @@ namespace Symfony\Component\Messenger\Handler;
*
* @author Samuel Roze <samuel.roze@gmail.com>
*
* @experimental in 4.2
* @experimental in 4.3
*/
interface MessageSubscriberInterface extends MessageHandlerInterface
{

View File

@ -19,7 +19,7 @@ use Symfony\Component\Messenger\Middleware\StackMiddleware;
* @author Matthias Noback <matthiasnoback@gmail.com>
* @author Nicolas Grekas <p@tchwork.com>
*
* @experimental in 4.2
* @experimental in 4.3
*/
class MessageBus implements MessageBusInterface
{

View File

@ -16,7 +16,7 @@ use Symfony\Component\Messenger\Stamp\StampInterface;
/**
* @author Samuel Roze <samuel.roze@gmail.com>
*
* @experimental in 4.2
* @experimental in 4.3
*/
interface MessageBusInterface
{

View File

@ -18,7 +18,7 @@ use Symfony\Component\Messenger\Envelope;
*
* @author Maxime Steinhausser <maxime.steinhausser@gmail.com>
*
* @experimental in 4.2
* @experimental in 4.3
*/
class ActivationMiddleware implements MiddlewareInterface
{

View File

@ -23,7 +23,7 @@ use Symfony\Component\Messenger\Stamp\HandledStamp;
/**
* @author Samuel Roze <samuel.roze@gmail.com>
*
* @experimental in 4.2
* @experimental in 4.3
*/
class HandleMessageMiddleware implements MiddlewareInterface
{

View File

@ -16,7 +16,7 @@ use Symfony\Component\Messenger\Envelope;
/**
* @author Samuel Roze <samuel.roze@gmail.com>
*
* @experimental in 4.2
* @experimental in 4.3
*/
interface MiddlewareInterface
{

View File

@ -26,7 +26,7 @@ use Symfony\Contracts\EventDispatcher\EventDispatcherInterface;
* @author Samuel Roze <samuel.roze@gmail.com>
* @author Tobias Schultze <http://tobion.de>
*
* @experimental in 4.2
* @experimental in 4.3
*/
class SendMessageMiddleware implements MiddlewareInterface
{

View File

@ -16,7 +16,7 @@ namespace Symfony\Component\Messenger\Middleware;
*
* Implementations must be cloneable, and each clone must unstack the stack independently.
*
* @experimental in 4.2
* @experimental in 4.3
*/
interface StackInterface
{

View File

@ -16,7 +16,7 @@ use Symfony\Component\Messenger\Envelope;
/**
* @author Nicolas Grekas <p@tchwork.com>
*
* @experimental in 4.2
* @experimental in 4.3
*/
class StackMiddleware implements MiddlewareInterface, StackInterface
{

View File

@ -19,7 +19,7 @@ use Symfony\Component\Stopwatch\Stopwatch;
*
* @author Maxime Steinhausser <maxime.steinhausser@gmail.com>
*
* @experimental in 4.2
* @experimental in 4.3
*/
class TraceableMiddleware implements MiddlewareInterface
{

View File

@ -19,7 +19,7 @@ use Symfony\Component\Validator\Validator\ValidatorInterface;
/**
* @author Tobias Nyholm <tobias.nyholm@gmail.com>
*
* @experimental in 4.2
* @experimental in 4.3
*/
class ValidationMiddleware implements MiddlewareInterface
{

View File

@ -21,7 +21,7 @@ use Symfony\Component\Messenger\Handler\HandlerDescriptor;
*
* @author Maxime Steinhausser <maxime.steinhausser@gmail.com>
*
* @experimental in 4.2
* @experimental in 4.3
*/
final class HandledStamp implements StampInterface
{

View File

@ -23,7 +23,7 @@ use Symfony\Component\Messenger\Middleware\SendMessageMiddleware;
*
* @author Samuel Roze <samuel.roze@gmail.com>
*
* @experimental in 4.2
* @experimental in 4.3
*/
final class ReceivedStamp implements StampInterface
{

View File

@ -18,7 +18,7 @@ namespace Symfony\Component\Messenger\Stamp;
*
* @author Maxime Steinhausser <maxime.steinhausser@gmail.com>
*
* @experimental in 4.2
* @experimental in 4.3
*/
final class SentStamp implements StampInterface
{

View File

@ -14,7 +14,7 @@ namespace Symfony\Component\Messenger\Stamp;
/**
* @author Maxime Steinhausser <maxime.steinhausser@gmail.com>
*
* @experimental in 4.2
* @experimental in 4.3
*/
final class SerializerStamp implements StampInterface
{

View File

@ -18,7 +18,7 @@ namespace Symfony\Component\Messenger\Stamp;
*
* @author Maxime Steinhausser <maxime.steinhausser@gmail.com>
*
* @experimental in 4.2
* @experimental in 4.3
*/
interface StampInterface
{

View File

@ -16,7 +16,7 @@ use Symfony\Component\Validator\Constraints\GroupSequence;
/**
* @author Maxime Steinhausser <maxime.steinhausser@gmail.com>
*
* @experimental in 4.2
* @experimental in 4.3
*/
final class ValidationStamp implements StampInterface
{

View File

@ -20,7 +20,7 @@ use Symfony\Component\Messenger\Middleware\StackMiddleware;
/**
* @author Nicolas Grekas <p@tchwork.com>
*
* @experimental in 4.2
* @experimental in 4.3
*/
abstract class MiddlewareTestCase extends TestCase
{

View File

@ -14,7 +14,7 @@ namespace Symfony\Component\Messenger;
/**
* @author Samuel Roze <samuel.roze@gmail.com>
*
* @experimental in 4.2
* @experimental in 4.3
*/
class TraceableMessageBus implements MessageBusInterface
{

View File

@ -12,7 +12,7 @@
namespace Symfony\Component\Messenger\Transport\AmqpExt;
/**
* @experimental in 4.2
* @experimental in 4.3
*/
class AmqpFactory
{

View File

@ -25,7 +25,7 @@ use Symfony\Component\Messenger\Transport\Serialization\SerializerInterface;
*
* @author Samuel Roze <samuel.roze@gmail.com>
*
* @experimental in 4.2
* @experimental in 4.3
*/
class AmqpReceiver implements ReceiverInterface, MessageCountAwareInterface
{

View File

@ -23,7 +23,7 @@ use Symfony\Component\Messenger\Transport\Serialization\SerializerInterface;
*
* @author Samuel Roze <samuel.roze@gmail.com>
*
* @experimental in 4.2
* @experimental in 4.3
*/
class AmqpSender implements SenderInterface
{

View File

@ -21,7 +21,7 @@ use Symfony\Component\Messenger\Transport\TransportInterface;
/**
* @author Nicolas Grekas <p@tchwork.com>
*
* @experimental in 4.2
* @experimental in 4.3
*/
class AmqpTransport implements TransportInterface, SetupableTransportInterface, MessageCountAwareInterface
{

View File

@ -18,7 +18,7 @@ use Symfony\Component\Messenger\Transport\TransportInterface;
/**
* @author Samuel Roze <samuel.roze@gmail.com>
*
* @experimental in 4.2
* @experimental in 4.3
*/
class AmqpTransportFactory implements TransportFactoryInterface
{

View File

@ -20,7 +20,7 @@ use Symfony\Component\Messenger\Exception\InvalidArgumentException;
*
* @final
*
* @experimental in 4.2
* @experimental in 4.3
*/
class Connection
{

View File

@ -18,7 +18,7 @@ use Symfony\Component\Messenger\Exception\TransportException;
* @author Samuel Roze <samuel.roze@gmail.com>
* @author Ryan Weaver <ryan@symfonycasts.com>
*
* @experimental in 4.2
* @experimental in 4.3
*/
interface ReceiverInterface
{

View File

@ -16,7 +16,7 @@ use Symfony\Component\Messenger\Envelope;
/**
* @author Samuel Roze <samuel.roze@gmail.com>
*
* @experimental in 4.2
* @experimental in 4.3
*/
interface SenderInterface
{

View File

@ -23,7 +23,7 @@ use Symfony\Component\Messenger\Handler\HandlersLocator;
*
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 4.2
* @experimental in 4.3
*/
class SendersLocator implements SendersLocatorInterface
{

View File

@ -20,7 +20,7 @@ use Symfony\Component\Messenger\Exception\UnknownSenderException;
* @author Samuel Roze <samuel.roze@gmail.com>
* @author Tobias Schultze <http://tobion.de>
*
* @experimental in 4.2
* @experimental in 4.3
*/
interface SendersLocatorInterface
{

View File

@ -18,7 +18,7 @@ use Symfony\Component\Messenger\Stamp\NonSendableStampInterface;
/**
* @author Ryan Weaver<ryan@symfonycasts.com>
*
* @experimental in 4.2
* @experimental in 4.3
*/
class PhpSerializer implements SerializerInterface
{

View File

@ -28,7 +28,7 @@ use Symfony\Component\Serializer\SerializerInterface as SymfonySerializerInterfa
/**
* @author Samuel Roze <samuel.roze@gmail.com>
*
* @experimental in 4.2
* @experimental in 4.3
*/
class Serializer implements SerializerInterface
{

View File

@ -17,7 +17,7 @@ use Symfony\Component\Messenger\Exception\MessageDecodingFailedException;
/**
* @author Samuel Roze <samuel.roze@gmail.com>
*
* @experimental in 4.2
* @experimental in 4.3
*/
interface SerializerInterface
{

View File

@ -17,7 +17,7 @@ use Symfony\Component\Messenger\Transport\Serialization\SerializerInterface;
/**
* @author Samuel Roze <samuel.roze@gmail.com>
*
* @experimental in 4.2
* @experimental in 4.3
*/
class TransportFactory implements TransportFactoryInterface
{

View File

@ -18,7 +18,7 @@ use Symfony\Component\Messenger\Transport\Serialization\SerializerInterface;
*
* @author Samuel Roze <samuel.roze@gmail.com>
*
* @experimental in 4.2
* @experimental in 4.3
*/
interface TransportFactoryInterface
{

View File

@ -17,7 +17,7 @@ use Symfony\Component\Messenger\Transport\Sender\SenderInterface;
/**
* @author Nicolas Grekas <p@tchwork.com>
*
* @experimental in 4.2
* @experimental in 4.3
*/
interface TransportInterface extends ReceiverInterface, SenderInterface
{

View File

@ -30,7 +30,7 @@ use Symfony\Contracts\EventDispatcher\EventDispatcherInterface;
/**
* @author Samuel Roze <samuel.roze@gmail.com>
*
* @experimental in 4.2
* @experimental in 4.3
*
* @final
*/