NewAction.php 338 B

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