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