Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Response.php
Go to the documentation of this file.
1 <?php
8 
12 
14 {
21  return null;
22  }
23 
27  public function validateForCsrf(RequestInterface $request): ?bool
28  {
29  return true;
30  }
31 
38  public function execute()
39  {
40  $this->_responseAction('frontend');
41  return $this->resultFactory->create(\Magento\Framework\Controller\ResultFactory::TYPE_PAGE);
42  }
43 }