1 | <?php |
||
16 | class OutgoingPipelineFeature extends Feature |
||
17 | { |
||
18 | |||
19 | /** |
||
20 | * Method will always be executed and should be used to determine whether to enable or disable the feature, |
||
21 | * configure default settings, configure dependencies, configure prerequisites and register startup tasks. |
||
22 | */ |
||
23 | 1 | public function describe() |
|
28 | |||
29 | /** |
||
30 | * Method is called if all defined conditions are met and the feature is marked as enabled. |
||
31 | * Use this method to configure and initialize all required components for the feature like |
||
32 | * the steps in the pipeline or the instances/factories in the container. |
||
33 | * |
||
34 | * @param Settings $settings |
||
35 | * @param BuilderInterface $builder |
||
36 | * @param PipelineModifications $pipelineModifications |
||
37 | */ |
||
38 | 1 | public function setup( |
|
62 | } |
||
63 |