Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Forward.php
Go to the documentation of this file.
1 <?php
9 
12 
18 class Forward extends AbstractAction
19 {
26  {
27  return $this->execute();
28  }
29 
33  public function execute()
34  {
35  $this->_request->setDispatched(false);
36  return $this->_response;
37  }
38 }
dispatch(RequestInterface $request)
Definition: Forward.php:25