Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
CustomerLogin.php
Go to the documentation of this file.
1 <?php
8 
12 
18 {
22  protected $wishlistData;
23 
27  public function __construct(Data $wishlistData)
28  {
29  $this->wishlistData = $wishlistData;
30  }
31 
36  public function execute(Observer $observer)
37  {
38  $this->wishlistData->calculate();
39  }
40 }