Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/stripe/module-payments/Model/Adminhtml/Source/
Upload File :
Current File : //home/rtorresani/www/vendor/stripe/module-payments/Model/Adminhtml/Source/VerificationCode.php

<?php

namespace StripeIntegration\Payments\Model\Adminhtml\Source;

use Magento\Framework\Option\ArrayInterface;

class VerificationCode implements ArrayInterface
{
    /**
     * {@inheritdoc}
     */
    public function toOptionArray()
    {
        return [
            ['value' => 'new_cards', 'label' => __('Collect only for new cards')],
            ['value' => 'new_saved_cards', 'label' => __('Collect for new and saved cards')]
        ];
    }
}