Pop\Config::getConfig PHP Method

getConfig() protected method

Method to get the config values as array
protected getConfig ( ) : void
return void
    protected function getConfig()
    {
        foreach ($this->config as $key => $value) {
            $this->array[$key] = $value instanceof Config ? $value->asArray() : $value;
        }
    }