Netresearch\Composer\Patches\Patch::getFileDeletions PHP Метод

getFileDeletions() публичный Метод

Get the files, deleted (or replaced) by this patch
public getFileDeletions ( ) : array
Результат array
    public function getFileDeletions()
    {
        if (is_array($this->fileDeletions)) {
            return $this->fileDeletions;
        }
        return $this->fileDeletions = $this->getActionFiles('-');
    }