Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
All Data Structures Namespaces Files Functions Variables Pages
FrontendSession.php
Go to the documentation of this file.
1 <?php
7 
9 
14 {
18  private $checkoutSession;
19 
27  public function __construct(CheckoutSession $checkoutSession)
28  {
29  $this->checkoutSession = $checkoutSession;
30  }
31 
35  public function getQuote()
36  {
37  return $this->checkoutSession->getQuote();
38  }
39 }
__construct(CheckoutSession $checkoutSession)