Netresearch\Composer\Patches\Patch::read PHP 메소드

read() 보호된 메소드

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