Edit.php 687 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. *
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. namespace Magento\Customer\Controller\Address;
  8. use Magento\Framework\App\Action\HttpGetActionInterface as HttpGetActionInterface;
  9. class Edit extends \Magento\Customer\Controller\Address implements HttpGetActionInterface
  10. {
  11. /**
  12. * Customer address edit action
  13. *
  14. * @return \Magento\Framework\Controller\Result\Forward
  15. */
  16. public function execute()
  17. {
  18. /** @var \Magento\Framework\Controller\Result\Forward $resultForward */
  19. $resultForward = $this->resultForwardFactory->create();
  20. return $resultForward->forward('form');
  21. }
  22. }