Mam działanie kontrolera, do którego chciałbym wstrzyknąć repozytorium produktów
namespace Nosto\Tagging\Controller\Export;
use Magento\Catalog\Api\ProductRepositoryInterface;
use Magento\Store\Model\StoreManagerInterface;
use Magento\Backend\App\Action;
use Magento\Framework\App\Action\Context;
class Test extends Action
{
private $_productRepository;
public function __construct(
Context $context,
StoreManagerInterface $storeManager,
ProductRepositoryInterface $productRepository
) {
parent::__construct($context);
$this->_storeManager = $storeManager;
$this->_productRepository = $productRepository;
}
Bez względu na kolejność, w jakiej układam moje argumenty konstruktora, wstrzykiwanie zależności Magento zawsze wstrzykuje niepoprawną klasę dla productRepository
argumentu prowadzącego PHP do błędu i błędu argumentu. storeManager
GETD wstrzykuje dobrze. Czyszczenie pamięci podręcznej nie pomogło.
Oto zgłoszony wyjątek:
Recoverable Error: Argument 3 passed to Nosto\Tagging\Controller\Export\Test::__construct() must implement interface Magento\Catalog\Api\ProductRepositoryInterface, instance of Nosto\Tagging\Helper\Account given.
Nazwy klas i pozycje argumentów w komunikacie o błędzie zmieniają się, ale definicja błędu jest zawsze taka sama. Usunięcie ProductRepositoryInterface
konstruktora sprawia, że wszystko jest w porządku.