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

getFileAdditions() public method

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