Neos\Flow\Monitor\ChangeDetectionStrategy\ModificationTimeStrategy::setFileDeleted PHP 메소드

setFileDeleted() 공개 메소드

Notify the change strategy that this file was deleted and does not need to be tracked anymore.
public setFileDeleted ( string $pathAndFilename ) : void
$pathAndFilename string
리턴 void
    public function setFileDeleted($pathAndFilename)
    {
        if (isset($this->filesAndModificationTimes[$pathAndFilename])) {
            unset($this->filesAndModificationTimes[$pathAndFilename]);
            $this->modificationTimesChanged = true;
        }
    }