NewAction.php 649 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\Address;
  8. use Magento\Framework\App\Action\HttpGetActionInterface as HttpGetActionInterface;
  9. class NewAction extends \Magento\Customer\Controller\Address implements HttpGetActionInterface
  10. {
  11. /**
  12. * @return \Magento\Framework\Controller\Result\Forward
  13. */
  14. public function execute()
  15. {
  16. /** @var \Magento\Framework\Controller\Result\Forward $resultForward */
  17. $resultForward = $this->resultForwardFactory->create();
  18. return $resultForward->forward('form');
  19. }
  20. }