| Current Path : /home/rtorresani/www/vendor/stripe/module-payments/Model/Adminhtml/Source/ |
| 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')
],
];
}
}