Gc\Core\Config::getValues PHP Method

getValues() public method

Return all values from core_config_data
public getValues ( ) : array
return array
    public function getValues()
    {
        $rows = $this->fetchAll($this->select());
        if (!empty($rows)) {
            return $rows;
        }
        return array();
    }