123456789101112131415161718192021222324 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Payment\Model\Config\Source;
- /**
- * @api
- * @since 100.0.2
- */
- class Allspecificcountries implements \Magento\Framework\Option\ArrayInterface
- {
- /**
- * {@inheritdoc}
- */
- public function toOptionArray()
- {
- return [
- ['value' => 0, 'label' => __('All Allowed Countries')],
- ['value' => 1, 'label' => __('Specific Countries')]
- ];
- }
- }
|