Total Complexity | 2 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
18 | class PayuCeeSingleSubFormPlugin extends AbstractPlugin implements SubFormPluginInterface |
||
19 | { |
||
20 | /** |
||
21 | * {@inheritDoc} |
||
22 | * - Returns a sub form for `PayU CEE Single` payment method. |
||
23 | * |
||
24 | * @api |
||
25 | * |
||
26 | * @return \Spryker\Yves\StepEngine\Dependency\Form\SubFormInterface |
||
27 | */ |
||
28 | public function createSubForm(): SubFormInterface |
||
29 | { |
||
30 | return $this->getFactory()->createPayuCeeSingleSubForm(); |
||
31 | } |
||
32 | |||
33 | /** |
||
34 | * {@inheritDoc} |
||
35 | * - Returns data provider for `PayU CEE Single` payment method form. |
||
36 | * |
||
37 | * @api |
||
38 | * |
||
39 | * @return \SprykerEco\Yves\Computop\Form\DataProvider\PayuCeeSingleFormDataProvider |
||
40 | */ |
||
41 | public function createSubFormDataProvider(): PayuCeeSingleFormDataProvider |
||
44 | } |
||
45 | } |
||
46 |