Total Complexity | 2 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
18 | class BraintreePayPalExpressSubFormPlugin extends AbstractPlugin implements SubFormPluginInterface |
||
19 | { |
||
20 | /** |
||
21 | * @return \Spryker\Yves\StepEngine\Dependency\Form\SubFormInterface |
||
22 | */ |
||
23 | public function createSubForm(): SubFormInterface |
||
24 | { |
||
25 | return $this->getFactory()->createPayPalExpressForm(); |
||
26 | } |
||
27 | |||
28 | /** |
||
29 | * @return \Spryker\Yves\StepEngine\Dependency\Form\StepEngineFormDataProviderInterface |
||
30 | */ |
||
31 | public function createSubFormDataProvider(): StepEngineFormDataProviderInterface |
||
34 | } |
||
35 | } |
||
36 |