12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Customer\Controller;
- use Magento\Framework\App\Action\Context;
- use Magento\Framework\View\Result\PageFactory;
- class Review extends \Magento\Framework\App\Action\Action
- {
- /**
- * @var PageFactory
- */
- protected $resultPageFactory;
- /**
- * @param Context $context
- * @param PageFactory $resultPageFactory
- */
- public function __construct(
- Context $context,
- PageFactory $resultPageFactory
- ) {
- parent::__construct($context);
- $this->resultPageFactory = $resultPageFactory;
- }
- /**
- * @return \Magento\Framework\View\Result\Page
- */
- public function execute()
- {
- return $this->resultPageFactory->create();
- }
- }
|