Total Complexity | 2 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
20 | class CrefoPayPayPalSubFormPlugin extends AbstractPlugin implements SubFormPluginInterface |
||
21 | { |
||
22 | /** |
||
23 | * {@inheritdoc} |
||
24 | * |
||
25 | * @api |
||
26 | * |
||
27 | * @return \Spryker\Yves\StepEngine\Dependency\Form\SubFormInterface |
||
28 | */ |
||
29 | public function createSubForm(): SubFormInterface |
||
30 | { |
||
31 | return $this->getFactory()->createPayPalForm(); |
||
32 | } |
||
33 | |||
34 | /** |
||
35 | * {@inheritdoc} |
||
36 | * |
||
37 | * @api |
||
38 | * |
||
39 | * @return \Spryker\Yves\StepEngine\Dependency\Form\StepEngineFormDataProviderInterface |
||
40 | */ |
||
41 | public function createSubFormDataProvider(): StepEngineFormDataProviderInterface |
||
44 | } |
||
45 | } |
||
46 |