| 1 | <?php |
||
| 10 | class ImmediateDispatchTerminator extends PipelineTerminator |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var MessageDispatcherInterface |
||
| 14 | */ |
||
| 15 | private $messageDispatcher; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @param MessageDispatcherInterface $messageDispatcher |
||
| 19 | */ |
||
| 20 | 4 | public function __construct(MessageDispatcherInterface $messageDispatcher) |
|
| 24 | |||
| 25 | /** |
||
| 26 | * @param DispatchContext $context |
||
| 27 | */ |
||
| 28 | 1 | protected function terminate($context) |
|
| 32 | |||
| 33 | /** |
||
| 34 | * @return string |
||
| 35 | */ |
||
| 36 | 1 | public static function getStageContextClass() |
|
| 40 | |||
| 41 | /** |
||
| 42 | * @return string |
||
| 43 | */ |
||
| 44 | 1 | public static function getNextStageContextClass() |
|
| 48 | } |
||
| 49 |