Skip to content

Commit 886c810

Browse files
Merge branch '4.1'
* 4.1: (27 commits) Added the Code of Conduct file do not override custom access decision configs [Security] Do not deauthenticate user when the first refreshed user has changed fix a return type hint invalidate stale commits for PRs too add missing cache prefix seed attribute to XSD fix command description Fix class documentation [Validator] Add a missing translation [FrameworkBundle] Fix 3.4 tests [DI] fix dumping inline services again Rename consumer to receiver Register messenger before the profiler Fix phpdocs [EventDispatcher] Remove template method in test case Added LB translation for #27993 (UUID validator message translation) Replace deprecated validateValue with validate [FWBundle] Automatically enable PropertyInfo when using Flex [Process] fix locking of pipe files on Windows Correct PHPDoc type for float ttl ...
2 parents 479018c + 8b841db commit 886c810

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Asynchronous/Transport/WrapIntoReceivedMessage.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ class WrapIntoReceivedMessage implements ReceiverInterface
2121
{
2222
private $decoratedReceiver;
2323

24-
public function __construct(ReceiverInterface $decoratedConsumer)
24+
public function __construct(ReceiverInterface $decoratedReceiver)
2525
{
26-
$this->decoratedReceiver = $decoratedConsumer;
26+
$this->decoratedReceiver = $decoratedReceiver;
2727
}
2828

2929
public function receive(callable $handler): void

0 commit comments

Comments
 (0)