Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
UnsetAllObserver.php
Go to the documentation of this file.
1 <?php
7 
9 
11 {
15  protected $checkoutSession;
16 
21  public function __construct(\Magento\Checkout\Model\Session $checkoutSession)
22  {
23  $this->checkoutSession = $checkoutSession;
24  }
25 
31  public function execute(\Magento\Framework\Event\Observer $observer)
32  {
33  $this->checkoutSession->clearQuote()->clearStorage();
34  }
35 }
__construct(\Magento\Checkout\Model\Session $checkoutSession)
execute(\Magento\Framework\Event\Observer $observer)