1 | <?php |
||
9 | class AttachReplyToAddressPipelineStep implements PipelineStepInterface |
||
10 | { |
||
11 | /** |
||
12 | * @var string |
||
13 | */ |
||
14 | private $replyToAddress; |
||
15 | |||
16 | /** |
||
17 | * @param string $replyToAddress |
||
18 | */ |
||
19 | 4 | public function __construct($replyToAddress) |
|
23 | |||
24 | /** |
||
25 | * @param OutgoingLogicalMessageContext $context |
||
26 | * @param callable $next |
||
27 | */ |
||
28 | 2 | public function invoke($context, callable $next) |
|
34 | |||
35 | /** |
||
36 | * @return string |
||
37 | */ |
||
38 | 1 | public static function getStageContextClass() |
|
42 | } |
||
43 |