Remove the experimental annotations

This commit is contained in:
Samuel ROZE 2018-09-08 14:04:14 +01:00
parent e980ce40e2
commit d16277b560
22 changed files with 0 additions and 45 deletions

View File

@ -16,8 +16,6 @@ use Symfony\Component\Messenger\Transport\SenderInterface;
/**
* @author Samuel Roze <samuel.roze@gmail.com>
* @author Tobias Schultze <http://tobion.de>
*
* @experimental in 4.1
*/
interface SenderLocatorInterface
{

View File

@ -27,8 +27,6 @@ use Symfony\Component\Messenger\Worker;
/**
* @author Samuel Roze <samuel.roze@gmail.com>
*
* @experimental in 4.1
*/
class ConsumeMessagesCommand extends Command
{

View File

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

View File

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

View File

@ -15,8 +15,6 @@ namespace Symfony\Component\Messenger;
* A message wrapped in an envelope with items (configurations, markers, ...).
*
* @author Maxime Steinhausser <maxime.steinhausser@gmail.com>
*
* @experimental in 4.1
*/
final class Envelope
{

View File

@ -15,8 +15,6 @@ namespace Symfony\Component\Messenger;
* A Messenger protagonist aware of the message envelope and its content.
*
* @author Maxime Steinhausser <maxime.steinhausser@gmail.com>
*
* @experimental in 4.1
*/
interface EnvelopeAwareInterface
{

View File

@ -17,8 +17,6 @@ namespace Symfony\Component\Messenger;
* This item must be serializable for transport.
*
* @author Maxime Steinhausser <maxime.steinhausser@gmail.com>
*
* @experimental in 4.1
*/
interface EnvelopeItemInterface
{

View File

@ -15,8 +15,6 @@ use Symfony\Component\Messenger\Exception\NoHandlerForMessageException;
/**
* @author Samuel Roze <samuel.roze@gmail.com>
*
* @experimental in 4.1
*/
interface HandlerLocatorInterface
{

View File

@ -15,8 +15,6 @@ namespace Symfony\Component\Messenger\Handler;
* Marker interface for message handlers.
*
* @author Samuel Roze <samuel.roze@gmail.com>
*
* @experimental in 4.1
*/
interface MessageHandlerInterface
{

View File

@ -15,8 +15,6 @@ namespace Symfony\Component\Messenger\Handler;
* Handlers can implement this interface to handle multiple messages.
*
* @author Samuel Roze <samuel.roze@gmail.com>
*
* @experimental in 4.1
*/
interface MessageSubscriberInterface extends MessageHandlerInterface
{

View File

@ -13,8 +13,6 @@ namespace Symfony\Component\Messenger;
/**
* @author Samuel Roze <samuel.roze@gmail.com>
*
* @experimental in 4.1
*/
interface MessageBusInterface
{

View File

@ -16,8 +16,6 @@ use Symfony\Component\Validator\Constraints\GroupSequence;
/**
* @author Maxime Steinhausser <maxime.steinhausser@gmail.com>
*
* @experimental in 4.1
*/
final class ValidationConfiguration implements EnvelopeItemInterface
{

View File

@ -13,8 +13,6 @@ namespace Symfony\Component\Messenger\Middleware;
/**
* @author Samuel Roze <samuel.roze@gmail.com>
*
* @experimental in 4.1
*/
interface MiddlewareInterface
{

View File

@ -1,9 +1,6 @@
Messenger Component
===================
**This Component is experimental**. [Experimental features](https://symfony.com/doc/current/contributing/code/experimental.html)
are not covered by Symfony's BC-break policy.
The Messenger component helps application send and receive messages to/from other applications or via
message queues.

View File

@ -13,8 +13,6 @@ namespace Symfony\Component\Messenger\Transport;
/**
* @author Samuel Roze <samuel.roze@gmail.com>
*
* @experimental in 4.1
*/
interface ReceiverInterface
{

View File

@ -15,8 +15,6 @@ use Symfony\Component\Messenger\Envelope;
/**
* @author Samuel Roze <samuel.roze@gmail.com>
*
* @experimental in 4.1
*/
interface SenderInterface
{

View File

@ -15,8 +15,6 @@ use Symfony\Component\Messenger\Envelope;
/**
* @author Samuel Roze <samuel.roze@gmail.com>
*
* @experimental in 4.1
*/
interface DecoderInterface
{

View File

@ -15,8 +15,6 @@ use Symfony\Component\Messenger\Envelope;
/**
* @author Samuel Roze <samuel.roze@gmail.com>
*
* @experimental in 4.1
*/
interface EncoderInterface
{

View File

@ -15,8 +15,6 @@ use Symfony\Component\Messenger\EnvelopeItemInterface;
/**
* @author Maxime Steinhausser <maxime.steinhausser@gmail.com>
*
* @experimental in 4.1
*/
final class SerializerConfiguration implements EnvelopeItemInterface
{

View File

@ -15,8 +15,6 @@ namespace Symfony\Component\Messenger\Transport;
* Creates a Messenger transport.
*
* @author Samuel Roze <samuel.roze@gmail.com>
*
* @experimental in 4.1
*/
interface TransportFactoryInterface
{

View File

@ -13,8 +13,6 @@ namespace Symfony\Component\Messenger\Transport;
/**
* @author Nicolas Grekas <p@tchwork.com>
*
* @experimental in 4.1
*/
interface TransportInterface extends ReceiverInterface, SenderInterface
{

View File

@ -16,8 +16,6 @@ use Symfony\Component\Messenger\Transport\ReceiverInterface;
/**
* @author Samuel Roze <samuel.roze@gmail.com>
*
* @experimental in 4.1
*/
class Worker
{