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

getFileDeletions() public method

Get the files, deleted (or replaced) by this patch
public getFileDeletions ( ) : array
return array
    public function getFileDeletions()
    {
        if (is_array($this->fileDeletions)) {
            return $this->fileDeletions;
        }
        return $this->fileDeletions = $this->getActionFiles('-');
    }