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