NewAction.php 521 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. *
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. namespace Magento\CheckoutAgreements\Controller\Adminhtml\Agreement;
  8. use Magento\Framework\App\Action\HttpGetActionInterface as HttpGetActionInterface;
  9. class NewAction extends \Magento\CheckoutAgreements\Controller\Adminhtml\Agreement implements HttpGetActionInterface
  10. {
  11. /**
  12. * @return void
  13. * @codeCoverageIgnore
  14. */
  15. public function execute()
  16. {
  17. $this->_forward('edit');
  18. }
  19. }