| Total Complexity | 3 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 22 | class AfterPayFactory extends AbstractFactory |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * @return \Spryker\Yves\StepEngine\Dependency\Form\SubFormInterface |
||
| 26 | */ |
||
| 27 | public function createInvoiceForm(): SubFormInterface |
||
| 28 | { |
||
| 29 | return new InvoiceSubForm(); |
||
| 30 | } |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @return \Spryker\Yves\StepEngine\Dependency\Form\StepEngineFormDataProviderInterface |
||
| 34 | */ |
||
| 35 | public function createInvoiceFormDataProvider(): StepEngineFormDataProviderInterface |
||
| 36 | { |
||
| 37 | return new InvoiceDataProvider(); |
||
| 38 | } |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @return \SprykerEco\Yves\AfterPay\Expander\AfterPayPaymentExpanderInterface |
||
| 42 | */ |
||
| 43 | public function createPaymentExpander(): AfterPayPaymentExpanderInterface |
||
| 46 | } |
||
| 47 | } |
||
| 48 |