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('-');
    }