Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
LogoutSuccess.php
Go to the documentation of this file.
1 <?php
8 
9 use Magento\Framework\App\Action\HttpGetActionInterface as HttpGetActionInterface;
12 
14 {
18  protected $resultPageFactory;
19 
24  public function __construct(
25  Context $context,
27  ) {
28  $this->resultPageFactory = $resultPageFactory;
29  parent::__construct($context);
30  }
31 
37  public function execute()
38  {
39  return $this->resultPageFactory->create();
40  }
41 }
__construct(Context $context, PageFactory $resultPageFactory)