Saya memiliki aksi pengontrol di mana saya ingin menyuntikkan repositori-produk
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;
}
Tidak peduli urutan apa pun yang saya tempatkan argumen konstruktor saya, ketergantungan-injeksi Magento selalu menyuntikkan kelas yang tidak valid untuk productRepository
argumen yang menyebabkan PHP untuk melempar dan kesalahan argumen. The storeManager
getd disuntikkan baik-baik saja. Membersihkan cache tidak membantu.
Inilah pengecualian yang dilemparkan:
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.
Nama kelas dan posisi argumen dalam pesan kesalahan berubah tetapi definisi kesalahan selalu sama. Menghapus ProductRepositoryInterface
dari konstruktor membuat semuanya baik kembali.