Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/magento/module-tax/Controller/Adminhtml/Rule/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-tax/Controller/Adminhtml/Rule/NewAction.php

<?php
/**
 *
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
namespace Magento\Tax\Controller\Adminhtml\Rule;

use Magento\Framework\Controller\ResultFactory;

class NewAction extends \Magento\Tax\Controller\Adminhtml\Rule
{
    /**
     * @return \Magento\Backend\Model\View\Result\Forward
     */
    public function execute()
    {
        /** @var \Magento\Backend\Model\View\Result\Forward $resultForward */
        $resultForward = $this->resultFactory->create(ResultFactory::TYPE_FORWARD);
        return $resultForward->forward('edit');
    }
}