| Total Complexity | 2 | 
| Total Lines | 26 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 20 | class CrefoPayCreditCard3DSubFormPlugin extends AbstractPlugin implements SubFormPluginInterface | ||
| 21 | { | ||
| 22 | /** | ||
| 23 |      * {@inheritdoc} | ||
| 24 | * - Creates sub form for CreditCard3D payment method. | ||
| 25 | * | ||
| 26 | * @api | ||
| 27 | * | ||
| 28 | * @return \Spryker\Yves\StepEngine\Dependency\Form\SubFormInterface | ||
| 29 | */ | ||
| 30 | public function createSubForm(): SubFormInterface | ||
| 31 |     { | ||
| 32 | return $this->getFactory()->createCreditCard3DForm(); | ||
| 33 | } | ||
| 34 | |||
| 35 | /** | ||
| 36 |      * {@inheritdoc} | ||
| 37 | * - Creates data provider for CreditCard3D payment method. | ||
| 38 | * | ||
| 39 | * @api | ||
| 40 | * | ||
| 41 | * @return \Spryker\Yves\StepEngine\Dependency\Form\StepEngineFormDataProviderInterface | ||
| 42 | */ | ||
| 43 | public function createSubFormDataProvider(): StepEngineFormDataProviderInterface | ||
| 46 | } | ||
| 47 | } | ||
| 48 |