bug #28013 [Messenger] Add missing typehint on chain sender (sroze)

This PR was merged into the 4.1 branch.

Discussion
----------

[Messenger] Add missing typehint on chain sender

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

The typehint is part of the `SenderInterface`. Adding it was probably forgotten at some point.

Commits
-------

22b2257609 Add missing typehint on chain sender
This commit is contained in:
Maxime Steinhausser 2018-07-22 12:26:23 +02:00
commit 817963d284

View File

@ -11,6 +11,8 @@
namespace Symfony\Component\Messenger\Transport;
use Symfony\Component\Messenger\Envelope;
/**
* @author Tobias Schultze <http://tobion.de>
*/
@ -29,7 +31,7 @@ class ChainSender implements SenderInterface
/**
* {@inheritdoc}
*/
public function send($message): void
public function send(Envelope $message): void
{
foreach ($this->senders as $sender) {
$sender->send($message);