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\Ratepay\Plugin;
use Spryker\Yves\Kernel\AbstractPlugin;
use Spryker\Yves\StepEngine\Dependency\Plugin\Form\SubFormPluginInterface;
* @method \SprykerEco\Yves\Ratepay\RatepayFactory getFactory()
class RatepayElvSubFormPlugin extends AbstractPlugin implements SubFormPluginInterface
{
* @return \Spryker\Yves\StepEngine\Dependency\Form\SubFormInterface
public function createSubForm()
return $this->getFactory()->createElvForm();
}
* @return \Spryker\Yves\StepEngine\Dependency\Form\StepEngineFormDataProviderInterface
public function createSubFormDataProvider()
return $this->getFactory()->createElvFormDataProvider();