NewAction.php 451 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. *
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. namespace Magento\Theme\Controller\Adminhtml\System\Design\Theme;
  8. /**
  9. * Class NewAction
  10. * @deprecated 100.2.0
  11. */
  12. class NewAction extends \Magento\Theme\Controller\Adminhtml\System\Design\Theme
  13. {
  14. /**
  15. * Create new theme
  16. *
  17. * @return void
  18. */
  19. public function execute()
  20. {
  21. $this->_forward('edit');
  22. }
  23. }