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