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\Payone\Plugin;
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\Payone\PayoneFactory getFactory()
class PayoneCashOnDeliverySubFormPlugin extends AbstractPlugin implements SubFormPluginInterface
{
* @return \Spryker\Yves\StepEngine\Dependency\Form\SubFormInterface
public function createSubForm(): SubFormInterface
return $this->getFactory()->createCashOnDeliverySubForm();
}
* @return \Spryker\Yves\StepEngine\Dependency\Form\StepEngineFormDataProviderInterface
public function createSubFormDataProvider(): StepEngineFormDataProviderInterface
return $this->getFactory()->createCashOnDeliverySubFormDataProvider();