This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/Messenger
Samuel ROZE afb17aba09 bug #28059 [Messenger] Fix error message on undefined message class for non-subscriber handler (chalasr)
This PR was merged into the 4.1 branch.

Discussion
----------

[Messenger] Fix error message on undefined message class for non-subscriber handler

| Q             | A
| ------------- | ---
| Branch?       | 4.1
| Bug fix?      | yes
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| Fixed tickets | n/a
| License       | MIT
| Doc PR        | n/a

Fixes a wrong hint talking about `getHandledMessages()` while the handler does not implement `MessageSubscriberInterface`.

Commits
-------

e5ea3bc032 [Messenger] Fix error message on undefined message class for non-subscriber handler
2018-07-26 22:05:42 +01:00
..
Asynchronous [Messenger] implement several senders using a ChainSender 2018-05-16 15:12:01 +02:00
Command [Messenger] Allow to scope handlers per bus 2018-05-19 12:07:07 +02:00
DataCollector Merge branch '4.0' into 4.1 2018-07-26 10:55:25 +02:00
DependencyInjection [Messenger] Fix error message on undefined message class for non-subscriber handler 2018-07-25 16:30:02 +02:00
Exception Revert "feature #26702 Mark ExceptionInterfaces throwable (ostrolucky)" 2018-05-30 09:26:09 +02:00
Handler [Messenger][DX] Uses custom method names for handlers 2018-05-11 15:00:51 +02:00
Middleware feature #26945 [Messenger] Support configuring messages when dispatching (ogizanagi) 2018-05-09 15:46:25 +01:00
Tests bug #28059 [Messenger] Fix error message on undefined message class for non-subscriber handler (chalasr) 2018-07-26 22:05:42 +01:00
Transport Merge branch '4.0' into 4.1 2018-07-26 10:55:25 +02:00
composer.json [Messenger] Fix suggested enqueue adapter package 2018-05-30 19:32:47 +02:00
Envelope.php Ensure the envelope is passed back and can be altered 2018-05-09 15:46:48 +01:00
EnvelopeAwareInterface.php feature #26945 [Messenger] Support configuring messages when dispatching (ogizanagi) 2018-05-09 15:46:25 +01:00
EnvelopeItemInterface.php feature #26945 [Messenger] Support configuring messages when dispatching (ogizanagi) 2018-05-09 15:46:25 +01:00
MessageBus.php Ensure the envelope is passed back and can be altered 2018-05-09 15:46:48 +01:00
MessageBusInterface.php feature #26945 [Messenger] Support configuring messages when dispatching (ogizanagi) 2018-05-09 15:46:25 +01:00
phpunit.xml.dist [Messenger] Add a new Messenger component 2018-03-23 09:01:52 +01:00
README.md [Messenger] Add a new Messenger component 2018-03-23 09:01:52 +01:00
TraceableMessageBus.php [Messenger] Improve the profiler panel 2018-05-13 08:14:09 +02:00
Worker.php feature #26945 [Messenger] Support configuring messages when dispatching (ogizanagi) 2018-05-09 15:46:25 +01:00

Messenger Component

This Component is experimental. Experimental features 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.

Resources