1 | <?php |
||
18 | class ExcludedOperationsStage extends AbstractStage |
||
19 | { |
||
20 | /** |
||
21 | * Stages for processing successful descriptors |
||
22 | * |
||
23 | * @var PipelineStageInterface[] |
||
24 | */ |
||
25 | private $stages; |
||
26 | |||
27 | /** |
||
28 | * AbstractStage constructor. |
||
29 | * |
||
30 | * @param RequestExecutorInterface $executor Request executor |
||
31 | * @param EventCaller $eventCaller Event caller |
||
32 | * @param ExecutionContext $executionContext Execution context |
||
33 | * @param PipelineStageInterface[] $stages Stages for success way |
||
34 | */ |
||
35 | 68 | public function __construct( |
|
44 | |||
45 | /** {@inheritdoc} */ |
||
46 | 54 | public function processStage(array $requestDescriptors) |
|
61 | } |
||
62 |