Netresearch\Composer\Patches\Patch::read PHP Method

read() protected method

Read in the patch
protected read ( ) : string
return string
    protected function read()
    {
        if ($this->content) {
            return $this->content;
        }
        $this->content = $this->patchSet->getDownloader()->getContents($this->info->url);
        return $this->content;
    }