Edit.php 601 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. *
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. namespace Magento\Customer\Controller\Adminhtml\Group;
  8. use Magento\Framework\App\Action\HttpGetActionInterface as HttpGetActionInterface;
  9. class Edit extends \Magento\Customer\Controller\Adminhtml\Group implements HttpGetActionInterface
  10. {
  11. /**
  12. * Edit customer group action. Forward to new action.
  13. *
  14. * @return \Magento\Backend\Model\View\Result\Forward
  15. */
  16. public function execute()
  17. {
  18. return $this->resultForwardFactory->create()->forward('new');
  19. }
  20. }