| Current Path : /home/rtorresani/www/vendor/magento/module-backend/Controller/Adminhtml/Index/ |
| 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;
}
}