| Current Path : /var/www/www.indacotrentino.com/www/vendor/stripe/module-payments/Model/Adminhtml/Source/ |
| Current File : /var/www/www.indacotrentino.com/www/vendor/stripe/module-payments/Model/Adminhtml/Source/Mode.php |
<?php
namespace StripeIntegration\Payments\Model\Adminhtml\Source;
class Mode
{
const TEST = 'test';
const LIVE = 'live';
public function toOptionArray()
{
return [
[
'value' => Mode::TEST,
'label' => __('Test')
],
[
'value' => Mode::LIVE,
'label' => __('Live')
],
];
}
}