123456789101112131415161718192021222324 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Review\Controller\Adminhtml\Rating;
- use Magento\Framework\App\Action\HttpGetActionInterface as HttpGetActionInterface;
- use Magento\Review\Controller\Adminhtml\Rating as RatingController;
- use Magento\Framework\Controller\ResultFactory;
- class NewAction extends RatingController implements HttpGetActionInterface
- {
- /**
- * @return \Magento\Backend\Model\View\Result\Forward
- */
- public function execute()
- {
- /** @var \Magento\Backend\Model\View\Result\Forward $resultForward */
- $resultForward = $this->resultFactory->create(ResultFactory::TYPE_FORWARD);
- $resultForward->forward('edit');
- return $resultForward;
- }
- }
|