| Current Path : /var/www/www.indacotrentino.com/www/vendor/magento/module-tax/Model/Config/Source/Apply/ |
| Current File : //var/www/www.indacotrentino.com/www/vendor/magento/module-tax/Model/Config/Source/Apply/On.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Tax\Model\Config\Source\Apply;
class On implements \Magento\Framework\Option\ArrayInterface
{
/**
* @return array
*/
public function toOptionArray()
{
return [
['value' => 0, 'label' => __('Custom price if available')],
['value' => 1, 'label' => __('Original price only')]
];
}
}