LdapTools\ConfigurationParseTrait::setParsedConfig PHP Method

setParsedConfig() protected method

Given a config that has been parsed to what the config values should be, call the setters to make sure all values are validated by any additional logic in the setters.
protected setParsedConfig ( array $config )
$config array
    protected function setParsedConfig(array $config)
    {
        foreach ($config as $key => $value) {
            $setter = 'set' . ucfirst($key);
            $this->{$setter}($value);
        }
    }