for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* MIT License
* Use of this software requires acceptance of the Evaluation License Agreement. See LICENSE file.
*/
namespace SprykerEco\Yves\Computop\Plugin\CheckoutPage;
use Spryker\Yves\Kernel\AbstractPlugin;
use Spryker\Yves\StepEngine\Dependency\Plugin\Form\SubFormPluginInterface;
use SprykerEco\Yves\Computop\Form\DataProvider\PayuCeeSingleFormDataProvider;
use SprykerEco\Yves\Computop\Form\PayuCeeSingleSubForm;
* @method \SprykerEco\Yves\Computop\ComputopFactory getFactory()
class PayuCeeSingleSubFormPlugin extends AbstractPlugin implements SubFormPluginInterface
{
* {@inheritDoc}
* - Returns the `PayuCeeSingleSubForm` form.
*
* @api
* @return \SprykerEco\Yves\Computop\Form\PayuCeeSingleSubForm
public function createSubForm(): PayuCeeSingleSubForm
return $this->getFactory()->createPayuCeeSingleSubForm();
}
* - Returns the `PayuCeeSingleFormDataProvider` data provider.
* @return \SprykerEco\Yves\Computop\Form\DataProvider\PayuCeeSingleFormDataProvider
public function createSubFormDataProvider(): PayuCeeSingleFormDataProvider
return $this->getFactory()->createPayuCeeSingleFormDataProvider();