123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Braintree\Model\Adminhtml\Source;
- use Magento\Framework\Option\ArrayInterface;
- /**
- * Class Environment
- */
- class Environment implements ArrayInterface
- {
- const ENVIRONMENT_PRODUCTION = 'production';
- const ENVIRONMENT_SANDBOX = 'sandbox';
- /**
- * Possible environment types
- *
- * @return array
- */
- public function toOptionArray()
- {
- return [
- [
- 'value' => self::ENVIRONMENT_SANDBOX,
- 'label' => 'Sandbox',
- ],
- [
- 'value' => self::ENVIRONMENT_PRODUCTION,
- 'label' => 'Production'
- ]
- ];
- }
- }
|