0
Magentoの2:コンパイル互換性のない引数の型中にエラーが発生し
PHPのbin/Magentoのセットアップを実行している間、私はエラーの下に持っている:ジ:コンパイル
Errors during compilation:
Ves\Blog\Model\ResourceModel\Author\Grid\Collection
Incompatible argument type: Required type: \Magento\Framework\DB\Adapter\AdapterInterface. Actual type: \Magento\Store\Model\StoreManagerInterface; File:
app/code/Ves/Blog/Model/ResourceModel/Author/Grid/Collection.php
Vesと/ブログ/モデル/ ResourceModel /著者/グリッド/ Collection.php
namespace Ves\Blog\Model\ResourceModel\Author\Grid;
use Magento\Framework\Api\Search\SearchResultInterface;
use Magento\Framework\Search\AggregationInterface;
use Ves\Blog\Model\ResourceModel\Author\Collection as AuthorCollection;
class Collection extends AuthorCollection implements SearchResultInterface
{
protected $aggregations;
public function __construct(
\Magento\Framework\Data\Collection\EntityFactoryInterface $entityFactory,
\Psr\Log\LoggerInterface $logger,
\Magento\Framework\Data\Collection\Db\FetchStrategyInterface $fetchStrategy,
\Magento\Framework\Event\ManagerInterface $eventManager,
\Magento\Store\Model\StoreManagerInterface $storeManager,
$mainTable,
$eventPrefix,
$eventObject,
$resourceModel,
$model = 'Magento\Framework\View\Element\UiComponent\DataProvider\Document',
$connection = null,
\Magento\Framework\Model\ResourceModel\Db\AbstractDb $resource = null
) {
parent::__construct(
$entityFactory,
$logger,
$fetchStrategy,
$eventManager,
$storeManager,
$connection,
$resource
);
$this->_eventPrefix = $eventPrefix;
$this->_eventObject = $eventObject;
$this->_init($model, $resourceModel);
$this->setMainTable($mainTable);
}
編集1: アプリは\ code \ \ Vesと\ブログ\モデル\ ResourceModel \著者\ Collection.php
<?php
namespace Ves\Blog\Model\ResourceModel\Author;
class Collection extends \Magento\Framework\Model\ResourceModel\Db\Collection\AbstractCollection
{
protected function _construct()
{
$this->_init('Ves\Blog\Model\Author', 'Ves\Blog\Model\ResourceModel\Author');
}
}
この問題を解決する方法を教えてください。
更新質問を助けることができます。 – Palanikumar