1234567891011121314151617181920212223 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Customer\Controller\Adminhtml\Index;
- use Magento\Framework\App\Action\HttpGetActionInterface as HttpGetActionInterface;
- class NewAction extends \Magento\Customer\Controller\Adminhtml\Index implements HttpGetActionInterface
- {
- /**
- * Create new customer action
- *
- * @return \Magento\Backend\Model\View\Result\Forward
- */
- public function execute()
- {
- $resultForward = $this->resultForwardFactory->create();
- $resultForward->forward('edit');
- return $resultForward;
- }
- }
|