From a52dea771ea0b6455a147aa4d3d2b089715a3e71 Mon Sep 17 00:00:00 2001 From: Dmitrii Fediuk Date: Thu, 2 May 2024 21:07:22 +0100 Subject: [PATCH] https://github.com/thehcginstitute-com/m1/issues/590 --- .../Ebizmarts/MailChimp/Model/ProcessWebhook.php | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/app/code/community/Ebizmarts/MailChimp/Model/ProcessWebhook.php b/app/code/community/Ebizmarts/MailChimp/Model/ProcessWebhook.php index a80922a7d..e19a37304 100644 --- a/app/code/community/Ebizmarts/MailChimp/Model/ProcessWebhook.php +++ b/app/code/community/Ebizmarts/MailChimp/Model/ProcessWebhook.php @@ -10,7 +10,6 @@ final class Ebizmarts_MailChimp_Model_ProcessWebhook { * @used-by Aoe_Scheduler_Model_Observer::dispatch() (app/code/community/Ebizmarts/MailChimp/etc/config.xml) */ function __construct() { - $this->_dateHelper = Mage::helper('mailchimp/date'); $this->_tags = new Tags; $this->_interestGroupHandle = Mage::getModel('mailchimp/api_subscribers_InterestGroupHandle'); } @@ -200,18 +199,8 @@ private function getInterestGroupHandleModel() */ private function getMailchimpTagsModel():Tags {return $this->_tags;} - /** - * @return Ebizmarts_MailChimp_Helper_Date|Mage_Core_Helper_Abstract - */ - private function getDateHelper() - { - return $this->_dateHelper; - } - const BATCH_LIMIT = 200; - private $_dateHelper; - /** * @var Ebizmarts_MailChimp_Model_Api_Subscribers_InterestGroupHandle */