NewAction.php 273 B

12345678910111213141516
  1. <?php
  2. namespace Dotdigitalgroup\Email\Controller\Adminhtml\Rules;
  3. class NewAction extends \Magento\Backend\App\AbstractAction
  4. {
  5. /**
  6. * Execute method.
  7. *
  8. * @return null
  9. */
  10. public function execute()
  11. {
  12. $this->_forward('edit');
  13. }
  14. }