| Current Path : /home/rtorresani/www/vendor/stripe/module-payments/Model/Adminhtml/Source/ |
| Current File : //home/rtorresani/www/vendor/stripe/module-payments/Model/Adminhtml/Source/PaymentFlow.php |
<?php
namespace StripeIntegration\Payments\Model\Adminhtml\Source;
use Magento\Payment\Model\Method\AbstractMethod;
class PaymentFlow implements \Magento\Framework\Option\ArrayInterface
{
public function toOptionArray()
{
return [
[
'value' => 0,
'label' => __('Embed payment form into the native flow.')
],
[
'value' => 1,
'label' => __('Redirect customers to Stripe Checkout.')
],
];
}
}