| Current Path : /home/rtorresani/www/vendor/stripe/module-payments/Model/Adminhtml/Source/ |
| Current File : //home/rtorresani/www/vendor/stripe/module-payments/Model/Adminhtml/Source/PaymentAction.php |
<?php
namespace StripeIntegration\Payments\Model\Adminhtml\Source;
use Magento\Payment\Model\Method\AbstractMethod;
class PaymentAction implements \Magento\Framework\Option\ArrayInterface
{
public function toOptionArray()
{
return [
[
'value' => AbstractMethod::ACTION_AUTHORIZE,
'label' => __('Authorize Only')
],
[
'value' => AbstractMethod::ACTION_AUTHORIZE_CAPTURE,
'label' => __('Authorize and Capture')
],
];
}
}