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

getFileAdditions() 공개 메소드

Get the files, added by this patch
public getFileAdditions ( ) : type
리턴 type
    public function getFileAdditions()
    {
        if (is_array($this->fileAdditions)) {
            return $this->fileAdditions;
        }
        return $this->fileAdditions = $this->getActionFiles('+');
    }