Smile\ElasticsuiteCore\Model\ResourceModel\Search\Request\RelevanceConfig\Data\Collection\Scoped::__construct PHP Method

__construct() public method

public __construct ( Magento\Framework\Data\Collection\EntityFactory $entityFactory, Psr\Log\LoggerInterface $logger, Magento\Framework\Data\Collection\Db\FetchStrategyInterface $fetchStrategy, Magento\Framework\Event\ManagerInterface $eventManager, Data $resource, string $scope, Magento\Framework\DB\Adapter\AdapterInterface $connection = null, mixed $scopeCode = null )
$entityFactory Magento\Framework\Data\Collection\EntityFactory The entity factory
$logger Psr\Log\LoggerInterface The internal logger
$fetchStrategy Magento\Framework\Data\Collection\Db\FetchStrategyInterface The fetch strategy
$eventManager Magento\Framework\Event\ManagerInterface The event manager
$resource Smile\ElasticsuiteCore\Model\ResourceModel\Search\Request\RelevanceConfig\Data The resource model being used
$scope string The configuration scope
$connection Magento\Framework\DB\Adapter\AdapterInterface Database Connection
$scopeCode mixed The scope code
    public function __construct(EntityFactory $entityFactory, LoggerInterface $logger, FetchStrategyInterface $fetchStrategy, ManagerInterface $eventManager, Data $resource, $scope, AdapterInterface $connection = null, $scopeCode = null)
    {
        $this->scope = $scope;
        $this->scopeCode = $scopeCode;
        parent::__construct($entityFactory, $logger, $fetchStrategy, $eventManager, $connection, $resource);
    }