Magento 2 StoreManagerInterface existe déjà dans l'objet contextuel de la compilation


15

Je reçois cette erreur dans mon extension.

PackageName \ ModuleName \ Block \ Enhanced Une
dépendance incorrecte dans la classe PackageName \ ModuleName \ Block \ Enhanced dans /var/www/html/app/code/PackageName/ModuleName/Block/Enhanced.php \ Magento \ Store \ Model \ StoreManagerInterface existe déjà dans objet de contexte

 public function __construct(
    \Magento\Framework\View\Element\Template\Context $context,
    \Magento\Catalog\Model\Session $catalogSession,
    \Magento\Store\Model\StoreManagerInterface $storeManager,        
    array $data = []

)
{
    parent::__construct($context, $data);
    $this->_catalogSession = $catalogSession;
    $this->_storeManager = $storeManager;      
}

Réponses:


12

Vous n'avez pas besoin d'injecter \Magento\Store\Model\StoreManagerInterfacedans votre constructeur car la classe parent le fait déjà.

Je suppose que votre bloc s'étend Magento\Framework\View\Element\Templatequi a déjà le code suivant:

protected $_storeManager;

public function __construct(Template\Context $context, array $data = [])
{
    $this->validator = $context->getValidator();
    $this->resolver = $context->getResolver();
    $this->_filesystem = $context->getFilesystem();
    $this->templateEnginePool = $context->getEnginePool();
    $this->_storeManager = $context->getStoreManager();
    $this->_appState = $context->getAppState();
    $this->templateContext = $this;
    $this->pageConfig = $context->getPageConfig();
    parent::__construct($context, $data);
}

Ainsi, vous pouvez remplacer votre code par:

public function __construct(
    \Magento\Framework\View\Element\Template\Context $context,
    \Magento\Catalog\Model\Session $catalogSession,   
    array $data = []

)
{
    parent::__construct($context, $data);
    $this->_catalogSession = $catalogSession;
}

3
Ah ... 13 secondes trop tard.
Marius

@Marius haha. Je trouve toujours intéressant de voir comment deux anglophones non natifs expliquent la même chose =)
Raphael au Digital Pianism

@Marius et Raphael +2. Tellement rapidement.
Khoa TruongDinh

5

vous n'avez pas besoin d'ajouter \Magento\Store\Model\StoreManagerInterface $storeManagerune dépendance à votre classe.
Vous avez déjà accès à une implémentation de StoreManagerInterfacedans la Magento\Framework\View\Element\Template\Contextclasse.
Regardez ça .

Vous pouvez donc faire ressembler votre constructeur à ceci:

public function __construct(
    \Magento\Framework\View\Element\Template\Context $context,
    \Magento\Catalog\Model\Session $catalogSession,
    array $data = []

)
{
    parent::__construct($context, $data);
    $this->_catalogSession = $catalogSession;
}

Et vous pourrez toujours accéder à une storeManagervariable membre comme celle-ci $this->_storeManager.


5

Les méthodes suivantes sont disponibles dans Contextobject ( \Magento\Framework\View\Element\Template\Context)

print_r(get_class_methods($context))

Array
(
    [0] => __construct
    [1] => getResolver
    [2] => getValidator
    [3] => getFilesystem
    [4] => getLogger
    [5] => getViewFileSystem
    [6] => getEnginePool
    [7] => getAppState
    [8] => getStoreManager
    [9] => getPageConfig
    [10] => getCache
    [11] => getDesignPackage
    [12] => getEventManager
    [13] => getLayout
    [14] => getRequest
    [15] => getSession
    [16] => getSidResolver
    [17] => getScopeConfig
    [18] => getInlineTranslation
    [19] => getUrlBuilder
    [20] => getAssetRepository
    [21] => getViewConfig
    [22] => getCacheState
    [23] => getEscaper
    [24] => getFilterManager
    [25] => getLocaleDate
)
En utilisant notre site, vous reconnaissez avoir lu et compris notre politique liée aux cookies et notre politique de confidentialité.
Licensed under cc by-sa 3.0 with attribution required.