| Current Path : /var/www/magento.test.indacotrentino.com/www/vendor/magento/framework/App/Action/ |
| Current File : /var/www/magento.test.indacotrentino.com/www/vendor/magento/framework/App/Action/Forward.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Framework\App\Action;
use Magento\Framework\App\CsrfAwareActionInterface;
use Magento\Framework\App\RequestInterface;
use Magento\Framework\App\Request\InvalidRequestException;
use Magento\Framework\App\ResponseInterface;
/**
* Forward request further.
*
* @SuppressWarnings(PHPMD.AllPurposeAction)
*/
class Forward extends AbstractAction implements CsrfAwareActionInterface
{
/**
* @inheritDoc
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
*/
public function dispatch(RequestInterface $request)
{
return $this->execute();
}
/**
* @inheritdoc
*/
public function execute()
{
$this->_request->setDispatched(false);
return $this->_response;
}
/**
* @inheritDoc
*/
public function createCsrfValidationException(RequestInterface $request): ?InvalidRequestException
{
return new InvalidRequestException($this->_response);
}
/**
* @inheritDoc
*/
public function validateForCsrf(RequestInterface $request): ?bool
{
// This exists so that we can forward to the noroute action in the admin
return true;
}
}