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/Currencies.php

<?php

namespace StripeIntegration\Payments\Model\Adminhtml\Source;

class Currencies
{
    public function toOptionArray()
    {
        return [
            [
                'value' => 0,
                'label' => __('All Currencies')
            ],
            [
                'value' => 1,
                'label' => __('Specific Currencies')
            ],
        ];
    }
}