_productCompFactory = $productCompFactory; $this->_productIndxFactory = $productIndxFactory; } /** * Customer logout processing * * @param \Magento\Framework\Event\Observer $observer * @return void * @SuppressWarnings(PHPMD.UnusedFormalParameter) */ public function execute(\Magento\Framework\Event\Observer $observer) { $this->_productCompFactory->create()->purgeVisitorByCustomer()->calculate(); $this->_productIndxFactory->create()->purgeVisitorByCustomer()->calculate(); } }