| Current Path : /home/rtorresani/www/vendor/magento/module-payment/Model/Config/Source/ |
| Current File : //home/rtorresani/www/vendor/magento/module-payment/Model/Config/Source/Allspecificcountries.php |
<?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')]
];
}
}