Smile\ElasticsuiteThesaurus\Model\ResourceModel\Thesaurus\Collection::__construct PHP Method

__construct() public method

public __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, Magento\Framework\DB\Helper $resourceHelper, Magento\Framework\DB\Adapter\AdapterInterface $connection = null, Magento\Framework\Model\ResourceModel\Db\AbstractDb $resource = null )
$entityFactory Magento\Framework\Data\Collection\EntityFactoryInterface Entity Factory
$logger Psr\Log\LoggerInterface Logger
$fetchStrategy Magento\Framework\Data\Collection\Db\FetchStrategyInterface Fetch Strategy
$eventManager Magento\Framework\Event\ManagerInterface Event Manager
$storeManager Magento\Store\Model\StoreManagerInterface Store Manager
$resourceHelper Magento\Framework\DB\Helper Resource Helper
$connection Magento\Framework\DB\Adapter\AdapterInterface Database Connection
$resource Magento\Framework\Model\ResourceModel\Db\AbstractDb Abstract Resource
    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, \Magento\Framework\DB\Helper $resourceHelper, \Magento\Framework\DB\Adapter\AdapterInterface $connection = null, \Magento\Framework\Model\ResourceModel\Db\AbstractDb $resource = null)
    {
        $this->storeManager = $storeManager;
        $this->resourceHelper = $resourceHelper;
        parent::__construct($entityFactory, $logger, $fetchStrategy, $eventManager, $connection, $resource);
    }