Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
CustomerAccountLogout.php
Go to the documentation of this file.
1 <?php
8 
9 use Magento\Mtf\Page\Page;
10 
14 class CustomerAccountLogout extends Page
15 {
19  const MCA = 'customer/account/logout';
20 
26  protected function initUrl()
27  {
28  $this->url = $_ENV['app_frontend_url'] . self::MCA;
29  }
30 }