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;
        }
    }