Config_Lite::setProcessSections PHP Method

setProcessSections() public method

If true, values for each section will be placed into a sub-array for the section. If false, all values will be placed in the global scope.
public setProcessSections ( boolean $processSections ) : Config_Lite
$processSections boolean - if true, sections will be processed
return Config_Lite
    public function setProcessSections($processSections)
    {
        $this->processSections = $processSections;
        return $this;
    }