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