Your IP : 216.73.217.95


Current Path : /var/www/www.indacotrentino.com/www/vendor/stripe/module-payments/Model/Adminhtml/Source/
Upload File :
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')
            ],
        ];
    }
}