Your IP : 216.73.217.13


Current Path : /home/rtorresani/www/vendor/magento/module-backend/Controller/Adminhtml/Index/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-backend/Controller/Adminhtml/Index/ChangeLocale.php

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

class ChangeLocale extends \Magento\Backend\Controller\Adminhtml\Index
{
    /**
     * Change locale action
     *
     * @return \Magento\Backend\Model\View\Result\Redirect
     */
    public function execute()
    {
        $redirectResult = $this->resultRedirectFactory->create();
        $redirectResult->setRefererUrl();
        return $redirectResult;
    }
}