M1\Vars\Resource\ResourceProvider::addContent PHP Method

addContent() private method

Adds content to the parent contents
private addContent ( array $content )
$content array The content from the resource
    private function addContent($content)
    {
        if ($this->relative) {
            $this->content = $this->mergeContents($this->content, $content);
        } else {
            $this->parent_content = $this->mergeContents($this->parent_content, $content);
        }
    }