DIR:/home/htlwork.com/www/dev/magento/vendor/magento/module-tax/Model/Config/Source/ |
Current File : /home/htlwork.com/www/dev/magento/vendor/magento/module-tax/Model/Config/Source/Basedon.php |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Model\Config\Source; class Basedon implements \Magento\Framework\Option\ArrayInterface { /** * @return array */ public function toOptionArray() { return [ ['value' => 'shipping', 'label' => __('Shipping Address')], ['value' => 'billing', 'label' => __('Billing Address')], ['value' => 'origin', 'label' => __("Shipping Origin")] ]; } } |