Smile\ElasticsuiteCore\Search\Request\ContainerConfiguration\RelevanceConfig\Factory::getCutoffFrequencyConfiguration PHP Method

getCutoffFrequencyConfiguration() private method

Retrieve cutoff frequency for a container.
private getCutoffFrequencyConfiguration ( string $scopeCode ) : float
$scopeCode string The scope code.
return float
    private function getCutoffFrequencyConfiguration($scopeCode)
    {
        $path = self::BASE_RELEVANCE_CONFIG_XML_PREFIX . "/" . self::CUTOFF_FREQUENCY_CONFIG_XML_PATH;
        return (double) $this->getConfigValue($path, $scopeCode);
    }