Gc\Core\Config::getValues PHP Méthode

getValues() public méthode

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