Delete duplicate injection
This commit is contained in:
parent
6e9629efef
commit
2ed36df9f1
@ -6,7 +6,6 @@ class DaemonCollector extends \Magento\Framework\View\Element\Template
|
|||||||
{
|
{
|
||||||
private $customer;
|
private $customer;
|
||||||
private $helper;
|
private $helper;
|
||||||
private $storeManager;
|
|
||||||
private $storeResolver;
|
private $storeResolver;
|
||||||
private $js = '';
|
private $js = '';
|
||||||
|
|
||||||
@ -23,7 +22,6 @@ EOT;
|
|||||||
*
|
*
|
||||||
* @param \Magento\Framework\View\Element\Template\Context $context
|
* @param \Magento\Framework\View\Element\Template\Context $context
|
||||||
* @param \Magento\Customer\Model\Session $customerSession
|
* @param \Magento\Customer\Model\Session $customerSession
|
||||||
* @param \Magento\Store\Model\StoreManagerInterface $storeManager
|
|
||||||
* @param \Magento\Store\Api\StoreResolverInterface $storeResolver
|
* @param \Magento\Store\Api\StoreResolverInterface $storeResolver
|
||||||
* @param \Retailcrm\Retailcrm\Helper\Data $helper
|
* @param \Retailcrm\Retailcrm\Helper\Data $helper
|
||||||
* @param array $data
|
* @param array $data
|
||||||
@ -31,14 +29,12 @@ EOT;
|
|||||||
public function __construct(
|
public function __construct(
|
||||||
\Magento\Framework\View\Element\Template\Context $context,
|
\Magento\Framework\View\Element\Template\Context $context,
|
||||||
\Magento\Customer\Model\Session $customerSession,
|
\Magento\Customer\Model\Session $customerSession,
|
||||||
\Magento\Store\Model\StoreManagerInterface $storeManager,
|
|
||||||
\Magento\Store\Api\StoreResolverInterface $storeResolver,
|
\Magento\Store\Api\StoreResolverInterface $storeResolver,
|
||||||
\Retailcrm\Retailcrm\Helper\Data $helper,
|
\Retailcrm\Retailcrm\Helper\Data $helper,
|
||||||
array $data = []
|
array $data = []
|
||||||
) {
|
) {
|
||||||
parent::__construct($context, $data);
|
parent::__construct($context, $data);
|
||||||
$this->customer = $customerSession->getCustomer();
|
$this->customer = $customerSession->getCustomer();
|
||||||
$this->storeManager = $storeManager;
|
|
||||||
$this->storeResolver = $storeResolver;
|
$this->storeResolver = $storeResolver;
|
||||||
$this->helper = $helper;
|
$this->helper = $helper;
|
||||||
}
|
}
|
||||||
@ -64,7 +60,7 @@ EOT;
|
|||||||
|
|
||||||
try {
|
try {
|
||||||
$siteKey = $this->helper->getSiteKey(
|
$siteKey = $this->helper->getSiteKey(
|
||||||
$this->storeManager->getStore(
|
$this->_storeManager->getStore(
|
||||||
$this->storeResolver->getCurrentStoreId()
|
$this->storeResolver->getCurrentStoreId()
|
||||||
)->getWebsiteId()
|
)->getWebsiteId()
|
||||||
);
|
);
|
||||||
|
Loading…
Reference in New Issue
Block a user