for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* MIT License
* For full license information, please view the LICENSE file that was distributed with this source code.
*/
namespace SprykerEco\Yves\Easycredit\Plugin\Subform;
use Spryker\Yves\Kernel\AbstractPlugin;
use Spryker\Yves\StepEngine\Dependency\Form\StepEngineFormDataProviderInterface;
use Spryker\Yves\StepEngine\Dependency\Form\SubFormInterface;
use Spryker\Yves\StepEngine\Dependency\Plugin\Form\SubFormPluginInterface;
* @method \SprykerEco\Yves\Easycredit\EasycreditFactory getFactory()
class EasycreditSubFormPlugin extends AbstractPlugin implements SubFormPluginInterface
{
* @api
*
* @return \Spryker\Yves\StepEngine\Dependency\Form\SubFormInterface
public function createSubForm(): SubFormInterface
return $this->getFactory()->createEasycreditSubForm();
}
* @return \Spryker\Yves\StepEngine\Dependency\Form\StepEngineFormDataProviderInterface
public function createSubFormDataProvider(): StepEngineFormDataProviderInterface
return $this->getFactory()->createEasycreditDataProvider();