diff --git a/app/code/community/Ebizmarts/MailChimp/Model/ProcessWebhook.php b/app/code/community/Ebizmarts/MailChimp/Model/ProcessWebhook.php index 1203140bc..f5596565a 100644 --- a/app/code/community/Ebizmarts/MailChimp/Model/ProcessWebhook.php +++ b/app/code/community/Ebizmarts/MailChimp/Model/ProcessWebhook.php @@ -2,7 +2,6 @@ # 2024-05-02 Dmitrii Fediuk https://upwork.com/fl/mage2pro # "Refactor `Ebizmarts_MailChimp_Model_ProcessWebhook`": # https://github.com/cabinetsbay/site/issues/590 -use Ebizmarts_MailChimp_Model_Api_Subscribers_InterestGroupHandle as InterestGroupHandle; use Ebizmarts_MailChimp_Model_Api_Subscribers_MailchimpTags as Tags; final class Ebizmarts_MailChimp_Model_ProcessWebhook { /** @@ -12,7 +11,6 @@ final class Ebizmarts_MailChimp_Model_ProcessWebhook { */ function __construct() { $this->_tags = new Tags; - $this->_interestGroupHandle = new InterestGroupHandle; } /** @@ -184,14 +182,6 @@ private function _getStoreId() return Mage::app()->getStore()->getId(); } - /** - * @return false|Mage_Core_Model_Abstract - */ - private function getInterestGroupHandleModel() - { - return $this->_interestGroupHandle; - } - /** * 2024-05-02 Dmitrii Fediuk https://upwork.com/fl/mage2pro * "Refactor `Ebizmarts_MailChimp_Model_ProcessWebhook`": https://github.com/cabinetsbay/site/issues/590 @@ -202,11 +192,6 @@ private function getMailchimpTagsModel():Tags {return $this->_tags;} const BATCH_LIMIT = 200; - /** - * @var Ebizmarts_MailChimp_Model_Api_Subscribers_InterestGroupHandle - */ - private $_interestGroupHandle; - /** * @var Ebizmarts_MailChimp_Model_Api_Subscribers_MailchimpTags */