N98\Magento\Command\System\Check\Settings\CheckAbstract::getParamValues PHP Method

getParamValues() private method

private getParamValues ( Mage_Core_Model_Store $store, array $typedParams ) : array
$store Mage_Core_Model_Store
$typedParams array
return array
    private function getParamValues(\Mage_Core_Model_Store $store, array $typedParams)
    {
        $paramValues = $this->storeConfigPaths;
        foreach ($paramValues as $name => $path) {
            $value = Mage::getStoreConfig($path, $store);
            $paramValues[$name] = $value;
        }
        $paramValues = $typedParams + $paramValues;
        return $paramValues;
    }