| Total Complexity | 2 | 
| Total Lines | 24 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 20 | class CrefoPayPrepaidSubFormPlugin 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()->createPrepaidForm();  | 
            ||
| 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 |