Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Index.php
Go to the documentation of this file.
1 <?php
8 
11 
12 class Index extends \Magento\Backend\Controller\Adminhtml\Index implements HttpGet, HttpPost
13 {
20  public function execute()
21  {
23  $resultRedirect = $this->resultRedirectFactory->create();
24  return $resultRedirect->setPath($this->_backendUrl->getStartupPageUrl());
25  }
26 }