1 | <?php |
||
11 | class MessageCorrelationFeature extends Feature |
||
12 | { |
||
13 | |||
14 | /** |
||
15 | * Method will always be executed and should be used to determine whether to enable or disable the feature, |
||
16 | * configure default settings, configure dependencies, configure prerequisites and register startup tasks. |
||
17 | */ |
||
18 | 1 | public function describe() |
|
22 | |||
23 | /** |
||
24 | * Method is called if all defined conditions are met and the feature is marked as enabled. |
||
25 | * Use this method to configure and initialize all required components for the feature like |
||
26 | * the steps in the pipeline or the instances/factories in the container. |
||
27 | * |
||
28 | * @param Settings $settings |
||
29 | * @param BuilderInterface $builder |
||
30 | * @param PipelineModifications $pipelineModifications |
||
31 | */ |
||
32 | 1 | public function setup( |
|
45 | } |
||
46 |